fix parentheses in cc1457c4f0

This commit is contained in:
Mateusz Poszwa 2011-08-29 15:28:01 +02:00 committed by Michael Stapelberg
parent 8317709b95
commit 42e61c4f6e

View File

@ -29,8 +29,8 @@ void print_cpu_usage(const char *format) {
#if defined(LINUX) #if defined(LINUX)
static char statpath[512]; static char statpath[512];
strcpy(statpath, "/proc/stat"); strcpy(statpath, "/proc/stat");
if (!slurp(statpath, buf, sizeof(buf) || if (!slurp(statpath, buf, sizeof(buf)) ||
sscanf(buf, "cpu %d %d %d %d", &curr_user, &curr_nice, &curr_system, &curr_idle) != 4)) sscanf(buf, "cpu %d %d %d %d", &curr_user, &curr_nice, &curr_system, &curr_idle) != 4)
goto error; goto error;
curr_total = curr_user + curr_nice + curr_system + curr_idle; curr_total = curr_user + curr_nice + curr_system + curr_idle;