From 2d9d31e85435a3c525b5bf2b215fa141d405b139 Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Mon, 21 May 2001 21:28:12 +0000 Subject: [PATCH] fix syntax error in FLAC__fixed_compute_best_predictor_slow() --- src/libFLAC/fixed.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libFLAC/fixed.c b/src/libFLAC/fixed.c index ea873f77..f454116a 100644 --- a/src/libFLAC/fixed.c +++ b/src/libFLAC/fixed.c @@ -80,7 +80,7 @@ unsigned FLAC__fixed_compute_best_predictor_slow(const int32 data[], unsigned da int32 last_error_1 = data[-1] - data[-2]; int32 last_error_2 = last_error_1 - (data[-2] - data[-3]); int32 last_error_3 = last_error_2 - (data[-2] - 2*data[-3] + data[-4]); - int32 error_0, save; + int32 error, save; /* total_error_* are 64-bits to avoid overflow when encoding * erratic signals when the bits-per-sample and blocksize are * large.