diff SDL_sound.c @ 80:25ee62c6b333

Fixed a const complaint from Visual C++ 6.0.
author Ryan C. Gordon <icculus@icculus.org>
date Tue, 25 Sep 2001 20:02:40 +0000
parents b13fafb976be
children dfdf7b4e05bd
line wrap: on
line diff
--- a/SDL_sound.c	Tue Sep 25 18:54:03 2001 +0000
+++ b/SDL_sound.c	Tue Sep 25 20:02:40 2001 +0000
@@ -184,7 +184,7 @@
     } /* for */
 
     if (available_decoders != NULL)
-        free(available_decoders);
+        free((void *) available_decoders);
     available_decoders = NULL;
 
     initialized = 0;