# HG changeset patch # User Ryan C. Gordon # Date 1001448160 0 # Node ID 25ee62c6b333a5987b2f17524f72b5b792b05adf # Parent a81efb367027b0824d660c18f7a1f38d2207a5f8 Fixed a const complaint from Visual C++ 6.0. diff -r a81efb367027 -r 25ee62c6b333 SDL_sound.c --- 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;