Skip to content

Commit

Permalink
Fixed an endline issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Apr 12, 2002
1 parent 748cbac commit e788d15
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions platform/win32.c
Expand Up @@ -184,9 +184,9 @@ PHYSFS_uint64 __PHYSFS_platformGetThreadID(void)
/* ...make this Cygwin AND Visual C friendly... */
int __PHYSFS_platformStricmp(const char *x, const char *y)
{
#if (defined _MSC_VER)
return(stricmp(x, y));
#else
#if (defined _MSC_VER)
return(stricmp(x, y));
#else
int ux, uy;

do
Expand All @@ -202,7 +202,7 @@ int __PHYSFS_platformStricmp(const char *x, const char *y)
} while ((ux) && (uy));

return(0);
#endif
#endif
} /* __PHYSFS_platformStricmp */


Expand Down

0 comments on commit e788d15

Please sign in to comment.