diff -r 07b8e286bc03 -r 92882ef2ab81 load_voc.c --- a/load_voc.c Mon Oct 16 02:16:47 2017 -0700 +++ b/load_voc.c Tue Oct 17 02:33:47 2017 -0700 @@ -29,16 +29,6 @@ (http://www.freshmeat.net/projects/sox/) */ -/* $Id$ */ - -#include -#include -#include - -#include "SDL_mutex.h" -#include "SDL_endian.h" -#include "SDL_timer.h" - #include "SDL_mixer.h" #include "load_voc.h" @@ -142,7 +132,7 @@ return 1; /* assume that's the end of the file. */ /* Size is an 24-bit value. Ugh. */ - sblen = ( (bits24[0]) | (bits24[1] << 8) | (bits24[2] << 16) ); + sblen = ((bits24[0]) | (bits24[1] << 8) | (bits24[2] << 16)); switch(block) { @@ -384,10 +374,10 @@ Uint8 *fillptr; void *ptr; - if ( (!src) || (!audio_buf) || (!audio_len) ) /* sanity checks. */ + if ((!src) || (!audio_buf) || (!audio_len)) /* sanity checks. */ goto done; - if ( !voc_check_header(src) ) + if (!voc_check_header(src)) goto done; v.rate = -1; @@ -457,3 +447,5 @@ } /* Mix_LoadVOC_RW */ /* end of load_voc.c ... */ + +/* vi: set ts=4 sw=4 expandtab: */