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: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=a4872adedee43b05feaee42e13007b0fe0afc41c src/common.c: Add missing semicolon. --- diff --git a/src/common.c b/src/common.c index f201b407..35e006a2 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)