From 83da7b0219fc91e4036cbb8b27cd74cfc9d3b077 Mon Sep 17 00:00:00 2001 From: dborth Date: Fri, 8 May 2009 16:33:32 +0000 Subject: [PATCH] fix compiler warning --- SDL/src/thread/wii/SDL_sysmutex.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/SDL/src/thread/wii/SDL_sysmutex.c b/SDL/src/thread/wii/SDL_sysmutex.c index d0eec32..c911851 100644 --- a/SDL/src/thread/wii/SDL_sysmutex.c +++ b/SDL/src/thread/wii/SDL_sysmutex.c @@ -59,8 +59,6 @@ void SDL_DestroyMutex(SDL_mutex *mutex) /* Lock the semaphore */ int SDL_mutexP(SDL_mutex *mutex) { - Uint32 this_thread; - if ( mutex == NULL ) { SDL_SetError("Passed a NULL mutex"); return -1;