aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/alsa.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2008-12-06 12:17:29 -0800
committerChris Robinson <[email protected]>2008-12-06 12:17:29 -0800
commitf6a4dbabdda352385073bf5cf404a0c8e29da918 (patch)
tree84e026968b52969c8c99fb83ef31d071741f1d1d /Alc/alsa.c
parenta71c291bcbd63af8a50af0e37f57e2ef1c57b4cd (diff)
Add cast for setting a dummy pointer value
Diffstat (limited to 'Alc/alsa.c')
-rw-r--r--Alc/alsa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/alsa.c b/Alc/alsa.c
index 27e43e53..68e1432d 100644
--- a/Alc/alsa.c
+++ b/Alc/alsa.c
@@ -901,7 +901,7 @@ void alc_alsa_init(BackendFuncs *func_list)
} while(0)
#else
str = NULL;
- alsa_handle = 0xDEADBEEF;
+ alsa_handle = (void*)0xDEADBEEF;
#define LOAD_FUNC(f) p##f = f
#endif