# HG changeset patch # User Sam Lantinga # Date 1229762465 0 # Node ID 11626a53e7bcf698456fc3bfeb0d2071bc1b1636 # Parent 04e89201f6ede2f76b0be5050ef247fdb4106f27 indent diff -r 04e89201f6ed -r 11626a53e7bc src/audio/SDL_audiocvt.c --- a/src/audio/SDL_audiocvt.c Sat Dec 20 06:46:37 2008 +0000 +++ b/src/audio/SDL_audiocvt.c Sat Dec 20 08:41:05 2008 +0000 @@ -1679,7 +1679,8 @@ } /* !!! FIXME: this memory leaks. */ - cvt->coeff = (Uint8 *) SDL_malloc((SDL_AUDIO_BITSIZE(format) / 8) * (m+1)); + cvt->coeff = + (Uint8 *) SDL_malloc((SDL_AUDIO_BITSIZE(format) / 8) * (m + 1)); if (cvt->coeff == NULL) { return -1; } @@ -1706,7 +1707,8 @@ /* Initialize the state buffer to all zeroes, and set initial position */ /* !!! FIXME: this memory leaks. */ - cvt->state_buf = (Uint8 *) SDL_malloc(cvt->len_sinc * SDL_AUDIO_BITSIZE(format) / 4); + cvt->state_buf = + (Uint8 *) SDL_malloc(cvt->len_sinc * SDL_AUDIO_BITSIZE(format) / 4); if (cvt->state_buf == NULL) { return -1; }