From b30f3e8df735d4b7d9a1799f64eece15d72cf4cc Mon Sep 17 00:00:00 2001 From: Brian Micek Date: Sat, 23 Feb 2008 10:51:46 +0100 Subject: [PATCH] src/collectd.c: Fix the arguments passed to an error message. Unfortunately the compiler doesn't check va-args, so this was unnoticed :/ --- src/collectd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.30.2