From 0752740d8dab48767305d93977bdd46b7663a9b8 Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Sun, 15 Sep 2013 10:22:01 +1000 Subject: [PATCH] src/libFLAC/lpc.c : Fix compiler warning. --- src/libFLAC/lpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libFLAC/lpc.c b/src/libFLAC/lpc.c index 0fa54f89..22f35b24 100644 --- a/src/libFLAC/lpc.c +++ b/src/libFLAC/lpc.c @@ -545,7 +545,7 @@ void FLAC__lpc_compute_residual_from_qlp_coefficients_wide(const FLAC__int32 *da break; } if(FLAC__bitmath_silog2_wide((FLAC__int64)(*data) - (sum >> lp_quantization)) > 32) { - fprintf(stderr,"FLAC__lpc_compute_residual_from_qlp_coefficients_wide: OVERFLOW, i=%u, data=%d, sum=%" PRId64 ", residual=%" PRId64 "\n", i, *data, (long long)(sum >> lp_quantization), ((FLAC__int64)(*data) - (sum >> lp_quantization))); + fprintf(stderr,"FLAC__lpc_compute_residual_from_qlp_coefficients_wide: OVERFLOW, i=%u, data=%d, sum=%" PRId64 ", residual=%" PRId64 "\n", i, *data, (int64_t)(sum >> lp_quantization), ((FLAC__int64)(*data) - (sum >> lp_quantization))); break; } *(residual++) = *(data++) - (FLAC__int32)(sum >> lp_quantization);