From 9e8801141716e52fd6897eb23cc116e08661814b Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Tue, 10 Mar 2009 02:20:05 -0700 Subject: [PATCH] Add a cast for setting a dummy pointer value --- Alc/portaudio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Alc/portaudio.c b/Alc/portaudio.c index 9e36e04b..47333c8f 100644 --- a/Alc/portaudio.c +++ b/Alc/portaudio.c @@ -215,7 +215,7 @@ void alc_pa_init(BackendFuncs *func_list) } while(0) #else str = NULL; - pa_handle = 0xDEADBEEF; + pa_handle = (void*)0xDEADBEEF; #define LOAD_FUNC(f) p##f = f #endif -- 2.11.4.GIT