From: Florian Forster Date: Thu, 6 Sep 2012 15:29:59 +0000 (+0200) Subject: src/common.c: Add missing semicolon. X-Git-Tag: collectd-5.0.5~4^2~18^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F126%2Fhead;p=thirdparty%2Fcollectd.git src/common.c: Add missing semicolon. --- diff --git a/src/common.c b/src/common.c index f201b4071..35e006a2a 100644 --- a/src/common.c +++ b/src/common.c @@ -637,7 +637,7 @@ long long get_kstat_value (kstat_t *ksp, char *name) if (ksp == NULL) { - ERROR ("get_kstat_value (\"%s\"): ksp is NULL.", name) + ERROR ("get_kstat_value (\"%s\"): ksp is NULL.", name); return (-1LL); } else if (ksp->ks_type != KSTAT_TYPE_NAMED)