Fixed an endline issue.
This commit is contained in:
parent
748cbac1c0
commit
e788d15811
|
@ -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 */
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue