aboutsummaryrefslogtreecommitdiff
path: root/itov.c
diff options
context:
space:
mode:
Diffstat (limited to 'itov.c')
-rw-r--r--itov.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/itov.c b/itov.c
index fa68a90..97f5280 100644
--- a/itov.c
+++ b/itov.c
@@ -42,11 +42,12 @@ static void itov_set(t_itov *x, t_float lo, t_float hi, t_float nbins)
if (nbins<1)
{
nbins=1;
- post("itov: number of bins is minimum 1...");
+ logpost(x, 2, "[itov] minimum number of bins is 1");
}
if (hi<=lo)
{
- post("itov: higher bound must be higher than lower bound...");
+ logpost(x, 2, "[itov] higher bound (%g) must be higher than lower bound (%g)",
+ hi, lo);
hi=lo+1.0f;
}