From e28e77bca6da3f43c2c30b98bf8bf173c1962a0c Mon Sep 17 00:00:00 2001 From: drowe67 Date: Tue, 11 Feb 2014 20:21:37 +0000 Subject: [PATCH] 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 --- fdmdv2/src/sox_biquad.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- 2.25.1