From: Florian Forster Date: Wed, 10 Mar 2010 17:37:47 +0000 (+0100) Subject: src/configfile.c: Fix a minor typo. X-Git-Tag: collectd-4.10.0~56 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=211a3152e621551647547d3098281a1497751883;p=collectd.git src/configfile.c: Fix a minor typo. --- diff --git a/src/configfile.c b/src/configfile.c index 0eeb86e6..aade4763 100644 --- a/src/configfile.c +++ b/src/configfile.c @@ -1006,7 +1006,7 @@ int cf_util_get_boolean (const oconfig_item_t *ci, _Bool *ret_bool) /* {{{ */ if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_BOOLEAN)) { ERROR ("cf_util_get_boolean: The %s option requires " - "exactly one string argument.", ci->key); + "exactly one boolean argument.", ci->key); return (-1); }