Fixed an endline issue.

This commit is contained in:
Ryan C. Gordon 2002-04-12 23:48:31 +00:00
parent 748cbac1c0
commit e788d15811
1 changed files with 4 additions and 4 deletions

View File

@ -184,9 +184,9 @@ PHYSFS_uint64 __PHYSFS_platformGetThreadID(void)
/* ...make this Cygwin AND Visual C friendly... */ /* ...make this Cygwin AND Visual C friendly... */
int __PHYSFS_platformStricmp(const char *x, const char *y) int __PHYSFS_platformStricmp(const char *x, const char *y)
{ {
#if (defined _MSC_VER) #if (defined _MSC_VER)
return(stricmp(x, y)); return(stricmp(x, y));
#else #else
int ux, uy; int ux, uy;
do do
@ -202,7 +202,7 @@ int __PHYSFS_platformStricmp(const char *x, const char *y)
} while ((ux) && (uy)); } while ((ux) && (uy));
return(0); return(0);
#endif #endif
} /* __PHYSFS_platformStricmp */ } /* __PHYSFS_platformStricmp */