From 38b070776b2e3270e3cf6d353913429e3b11cbc9 Mon Sep 17 00:00:00 2001 From: michael Date: Sat, 20 Jan 2007 06:58:56 +0000 Subject: minor fixes to evaluator git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@750 3ae390bd-cb1e-0410-b409-cd5a39f66f1f --- cfg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cfg.c') diff --git a/cfg.c b/cfg.c index 6635911..c3c8338 100644 --- a/cfg.c +++ b/cfg.c @@ -413,13 +413,13 @@ int cfg_number(const char *section, const char *key, const int defval, const int DelResult(&result); if (*value < min) { - error("bad '%s' value '%d' in %s, minimum is %d", key, *value, cfg_source(), min); + error("bad '%s.%s' value '%d' in %s, minimum is %d", section, key, *value, cfg_source(), min); *value = min; return -1; } if (max > min && max != -1 && *value > max) { - error("bad '%s' value '%d' in %s, maximum is %d", key, *value, cfg_source(), max); + error("bad '%s.%s' value '%d' in %s, maximum is %d", section, key, *value, cfg_source(), max); *value = max; return -1; } -- cgit v1.2.3