Skip to content

Commit

Permalink
Fixed search-and-replace fuckup (thanks, Brian!).
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Dec 22, 2003
1 parent 6d45e5b commit ffb2e6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions platform/win32.c
Expand Up @@ -483,7 +483,7 @@ LinkedStringList *__PHYSFS_platformEnumerateFiles(const char *dirname,
dir = FindFirstFile(SearchPath, &ent);
BAIL_IF_MACRO
(
dir == PHYSFS_INVALID_HANDLE_VALUE,
dir == INVALID_HANDLE_VALUE,
win32strerror(), NULL
);

Expand Down Expand Up @@ -750,7 +750,7 @@ static void *doOpen(const char *fname, DWORD mode, DWORD creation, int rdonly)

BAIL_IF_MACRO
(
fileHandle == PHYSFS_INVALID_HANDLE_VALUE,
fileHandle == INVALID_HANDLE_VALUE,
win32strerror(), NULL
);

Expand Down

0 comments on commit ffb2e6c

Please sign in to comment.