From: Florian Forster Date: Wed, 30 Apr 2008 08:57:51 +0000 (+0200) Subject: load plugin: Use #if rather than #ifdef. X-Git-Tag: collectd-4.4.0~4^2~2^2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=540f2619a4d09fdb6ae465e8cc935c9dec4bcf70;p=collectd.git load plugin: Use #if rather than #ifdef. --- diff --git a/src/load.c b/src/load.c index db3bf4b8..15215d3c 100644 --- a/src/load.c +++ b/src/load.c @@ -116,7 +116,7 @@ static int load_read (void) load_submit (snum, mnum, lnum); /* #endif KERNEL_LINUX */ -#elif defined(HAVE_LIBSTATGRAB) +#elif HAVE_LIBSTATGRAB gauge_t snum, mnum, lnum; sg_load_stats *ls;