From: Brian Micek Date: Sat, 23 Feb 2008 09:51:46 +0000 (+0100) Subject: src/collectd.c: Fix the arguments passed to an error message. X-Git-Tag: collectd-4.3.1~12 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=b30f3e8df735d4b7d9a1799f64eece15d72cf4cc;p=collectd.git src/collectd.c: Fix the arguments passed to an error message. Unfortunately the compiler doesn't check va-args, so this was unnoticed :/ --- diff --git a/src/collectd.c b/src/collectd.c index f260c842..984ff757 100644 --- a/src/collectd.c +++ b/src/collectd.c @@ -91,7 +91,7 @@ static int init_hostname (void) "\"FQDNLookup\" option, but I cannot resolve " "my hostname to a fully qualified domain " "name. Please fix you network " - "configuration."); + "configuration.", hostname_g); return (-1); }