From cebecf16cc349650bf2a9b20f24b2eac6372e07b Mon Sep 17 00:00:00 2001 From: Russell Rice Date: Wed, 7 Mar 2007 23:52:33 +0000 Subject: Update project Fix a warning Subversion-branch: /trunk/chocolate-doom Subversion-revision: 845 --- src/pcsound/pcsound_win32.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/pcsound/pcsound_win32.c b/src/pcsound/pcsound_win32.c index 41b1e059..090c0bbd 100644 --- a/src/pcsound/pcsound_win32.c +++ b/src/pcsound/pcsound_win32.c @@ -34,7 +34,7 @@ static SDL_Thread *sound_thread_handle; static int sound_thread_running; static pcsound_callback_func callback; -static void SoundThread(void *unused) +static int SoundThread(void *unused) { int frequency; int duration; @@ -51,7 +51,9 @@ static void SoundThread(void *unused) { Sleep(duration); } - } + } + + return 0; } static int PCSound_Win32_Init(pcsound_callback_func callback_func) -- cgit v1.2.3