comparison 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
comparison
equal deleted inserted replaced
79:a81efb367027 80:25ee62c6b333
182 decoders[i].available = 0; 182 decoders[i].available = 0;
183 } /* if */ 183 } /* if */
184 } /* for */ 184 } /* for */
185 185
186 if (available_decoders != NULL) 186 if (available_decoders != NULL)
187 free(available_decoders); 187 free((void *) available_decoders);
188 available_decoders = NULL; 188 available_decoders = NULL;
189 189
190 initialized = 0; 190 initialized = 0;
191 191
192 return(1); 192 return(1);