Skip to content

Commit

Permalink
changes warning statement
Browse files Browse the repository at this point in the history
  • Loading branch information
spran180 committed Jul 22, 2024
1 parent 47cbf38 commit 23ce8b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/internal_modules/roc_core/mov_histogram.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ template <typename T> 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<T>(value_range_max - value_range_min)
Expand Down

0 comments on commit 23ce8b2

Please sign in to comment.