src/common.c: Add missing semicolon.
authorFlorian Forster <octo@collectd.org>
Thu, 6 Sep 2012 15:29:59 +0000 (17:29 +0200)
committerFlorian Forster <octo@collectd.org>
Thu, 6 Sep 2012 15:29:59 +0000 (17:29 +0200)
src/common.c

index f201b40..35e006a 100644 (file)
@@ -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)