diff options
Diffstat (limited to 'include/gos/linux.h')
-rw-r--r-- | include/gos/linux.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/gos/linux.h b/include/gos/linux.h index 508b2b68..f8b049e9 100644 --- a/include/gos/linux.h +++ b/include/gos/linux.h @@ -41,7 +41,7 @@ typedef pthread_mutex_t gfxMutex; #define gfxMillisecondsToTicks(ms) (ms) #define gfxYield() pthread_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) |