From: drowe67 Date: Tue, 11 Feb 2014 20:21:37 +0000 (+0000) Subject: patch to stop tools-filter function crashing, thanks Kamal X-Git-Url: http://git.whiteaudio.com/gitweb/?a=commitdiff_plain;h=e28e77bca6da3f43c2c30b98bf8bf173c1962a0c;p=freetel-svn-tracking.git patch to stop tools-filter function crashing, thanks Kamal git-svn-id: https://svn.code.sf.net/p/freetel/code@1400 01035d8c-6547-0410-b346-abe4f91aad63 --- diff --git a/fdmdv2/src/sox_biquad.c b/fdmdv2/src/sox_biquad.c index 0403beb2..85abdbb0 100644 --- a/fdmdv2/src/sox_biquad.c +++ b/fdmdv2/src/sox_biquad.c @@ -85,7 +85,8 @@ void sox_biquad_filter(void *sbq, short out[], short in[], int n) sox_effect_t *e = (sox_effect_t *)sbq; sox_sample_t ibuf[N_MAX]; sox_sample_t obuf[N_MAX]; - unsigned int isamp, osamp, clips; + size_t isamp, osamp; + unsigned int clips; SOX_SAMPLE_LOCALS; int i;