Skip to content

Commit

Permalink
Whoops; the pthread-disabling condition was flipped. Fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jul 25, 2002
1 parent 4752ee3 commit 0c05876
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/unix.c
Expand Up @@ -280,7 +280,7 @@ char *__PHYSFS_platformRealPath(const char *path)
} /* __PHYSFS_platformRealPath */


#if (!defined PHYSFS_NO_PTHREADS_SUPPORT)
#if (defined PHYSFS_NO_PTHREADS_SUPPORT)

PHYSFS_uint64 __PHYSFS_platformGetThreadID(void) { return(0x0001); }
void *__PHYSFS_platformCreateMutex(void) { return((void *) 0x0001); }
Expand Down

0 comments on commit 0c05876

Please sign in to comment.