diff --git a/src/analyzer/analyzerebur128.cpp b/src/analyzer/analyzerebur128.cpp index 40d1ac00ab8..01572cf7f26 100644 --- a/src/analyzer/analyzerebur128.cpp +++ b/src/analyzer/analyzerebur128.cpp @@ -72,8 +72,8 @@ void AnalyzerEbur128::storeResults(TrackPointer pTrack) { if (averageLufs == -HUGE_VAL || averageLufs == HUGE_VAL || // This catches 0 and abnormal values inf and -inf (that may have - // slipped through in libebur for some reason. - util_isnormal(averageLufs)) { + // slipped through in libebur128 for some reason. + !util_isnormal(averageLufs)) { qWarning() << "AnalyzerEbur128::storeResults() averageLufs invalid:" << averageLufs; return;