diff options
Diffstat (limited to 'include/gos/osx.h')
| -rw-r--r-- | include/gos/osx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/gos/osx.h b/include/gos/osx.h index 3f36aaff..56e0551e 100644 --- a/include/gos/osx.h +++ b/include/gos/osx.h @@ -40,7 +40,7 @@ typedef pthread_mutex_t gfxMutex; #define gfxMillisecondsToTicks(ms) (ms) #define gfxYield() sched_yield() #define gfxThreadMe() pthread_self() -#define gfxThreadClose(th) {} +#define gfxThreadClose(th) (void)th #define gfxMutexInit(pmtx) pthread_mutex_init(pmtx, 0) #define gfxMutexDestroy(pmtx) pthread_mutex_destroy(pmtx) #define gfxMutexEnter(pmtx) pthread_mutex_lock(pmtx) |
