diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-03-25 08:19:13 +0100 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-03-25 08:19:13 +0100 |
commit | c9dc67e0542a0f540b014e8b2607bfc269433951 (patch) | |
tree | ce0a76d9f000ef1cd13eadb5ae2f126174846e6a /src | |
parent | 0b882f36b55a0e45506d33d60e343ec9a492fbb4 (diff) |
print_cpu_usage: Fix warnings on non linux
Move linux variable under LINUX boundaries
Diffstat (limited to 'src')
-rw-r--r-- | src/print_cpu_usage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/print_cpu_usage.c b/src/print_cpu_usage.c index 68437b3..2c59f69 100644 --- a/src/print_cpu_usage.c +++ b/src/print_cpu_usage.c @@ -40,12 +40,12 @@ static int prev_idle = 0; void print_cpu_usage(yajl_gen json_gen, char *buffer, const char *format) { const char *walk; char *outwalk = buffer; - char buf[1024]; int curr_user = 0, curr_nice = 0, curr_system = 0, curr_idle = 0, curr_total; int diff_idle, diff_total, diff_usage; #if defined(LINUX) static char statpath[512]; + char buf[1024]; strcpy(statpath, "/proc/stat"); if (!slurp(statpath, buf, sizeof(buf)) || sscanf(buf, "cpu %d %d %d %d", &curr_user, &curr_nice, &curr_system, &curr_idle) != 4) |