From 23ce8b2d3f99c85363d5171698fd6c8bba1aa2e4 Mon Sep 17 00:00:00 2001 From: Pranav Sharma <83678994+spran180@users.noreply.github.com> Date: Mon, 22 Jul 2024 18:56:55 +0530 Subject: [PATCH] changes warning statement --- src/internal_modules/roc_core/mov_histogram.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/internal_modules/roc_core/mov_histogram.h b/src/internal_modules/roc_core/mov_histogram.h index 587913a1c..5fa5bdd58 100644 --- a/src/internal_modules/roc_core/mov_histogram.h +++ b/src/internal_modules/roc_core/mov_histogram.h @@ -39,8 +39,8 @@ template class MovHistogram { , bins_(arena) , valid_(false) { if (num_bins == 0 || window_length == 0 || value_range_min >= value_range_max) { - roc_panic( - "mov histogram: number of bins and window length must be greater than 0"); + roc_panic("mov histogram: number of bins and window length must be greater " + "than 0 and value_range_min must be less than value_range_max"); } bin_width_ = (static_cast(value_range_max - value_range_min)