From 9ddb1a72dfdf09ff8af5890c33e8b5ea54887852 Mon Sep 17 00:00:00 2001 From: kristerw Date: Sat, 9 Jul 2005 16:05:16 +0000 Subject: Fix a C99 variable declaration to make this pkg compile with gcc 2.95. --- audio/sox/patches/patch-ab | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 audio/sox/patches/patch-ab (limited to 'audio/sox/patches') diff --git a/audio/sox/patches/patch-ab b/audio/sox/patches/patch-ab new file mode 100644 index 00000000000..14a7fd4c62d --- /dev/null +++ b/audio/sox/patches/patch-ab @@ -0,0 +1,21 @@ +$NetBSD: patch-ab,v 1.8 2005/07/09 16:05:16 kristerw Exp $ + +--- src/noisered.c.orig Sat Jul 9 18:01:23 2005 ++++ src/noisered.c Sat Jul 9 18:01:52 2005 +@@ -126,6 +126,7 @@ + * due to overlapping windows. */ + static void reduce_noise(chandata_t* chan, float* window, float level) + { ++ int i; + float *inr = (float*)calloc(WINDOWSIZE, sizeof(float)); + float *ini = (float*)calloc(WINDOWSIZE, sizeof(float)); + float *outr = (float*)calloc(WINDOWSIZE, sizeof(float)); +@@ -135,8 +136,6 @@ + static int callnum = 0; + + callnum ++; +- +- int i; + + for (i = 0; i < FREQCOUNT; i ++) { + assert(smoothing[i] >= 0 && smoothing[i] <= 1); -- cgit v1.2.3