aboutsummaryrefslogtreecommitdiff
path: root/lhist.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-10-29 18:59:56 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-10-29 18:59:56 +0000
commite1775060ebae110fd14dddee80f75e809d75fdac (patch)
tree6bf3fb7100c2d43d589bc3dc685976f1e2c2d99b /lhist.c
parente746ce11899b6ad2ba46643ccc038e758f5912cd (diff)
updated to use logpost for bounds errors
svn path=/trunk/externals/smlib/; revision=15681
Diffstat (limited to 'lhist.c')
-rw-r--r--lhist.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lhist.c b/lhist.c
index ea20edc..5f27b9b 100644
--- a/lhist.c
+++ b/lhist.c
@@ -119,11 +119,12 @@ static void lhist_set(t_lhist *x, t_float lo, t_float hi, t_float nbins)
if (nbins<1)
{
nbins=1;
- post("lhist: number of bins is minimum 1...");
+ logpost(x, 2, "[lhist] minimum number of bins is 1");
}
if (hi<=lo)
{
- post("lhist: higher bound must be higher than lower bound...");
+ logpost(x, 2, "[lhist] higher bound (%g) must be greater than lower bound (%g)",
+ hi, lo);
hi=lo+1.0f;
}
freebytes(x->m_lhist, x->m_nbins);