From 456db820b6db0f374a8fecb54f0990e9b4a82d36 Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Thu, 1 Mar 2001 19:14:05 +0000 Subject: [PATCH] *** empty log message *** --- src/libFLAC/lpc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libFLAC/lpc.c b/src/libFLAC/lpc.c index fd255e4b..c7eaaa0c 100644 --- a/src/libFLAC/lpc.c +++ b/src/libFLAC/lpc.c @@ -104,8 +104,8 @@ int FLAC__lpc_quantize_coefficients(const real lp_coeff[], unsigned order, unsig if(d > cmax) cmax = d; } - if(cmax < 0) { - /* => coeffients are all 0, which means our constant-detect didn't work */ + if(cmax < 0.0) { + /* => coefficients are all 0, which means our constant-detect didn't work */ return 2; } else {