diff options
author | Denys Vlasenko | 2010-11-04 23:30:11 +0100 |
---|---|---|
committer | Denys Vlasenko | 2010-11-04 23:30:11 +0100 |
commit | dea28e1e558228d9c46cdb25c7f00986d9d52bcc (patch) | |
tree | 178fa466dea11782289f721a3c9992e4d981841f /procps/powertop.c | |
parent | dcb163aa8e7808b59aef3d3319c707e7d9ac4ce4 (diff) | |
download | busybox-dea28e1e558228d9c46cdb25c7f00986d9d52bcc.zip busybox-dea28e1e558228d9c46cdb25c7f00986d9d52bcc.tar.gz |
powertop: fix last line detection in process_timer_stats()
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'procps/powertop.c')
-rw-r--r-- | procps/powertop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/procps/powertop.c b/procps/powertop.c index 87efbe8..da7f052 100644 --- a/procps/powertop.c +++ b/procps/powertop.c @@ -420,12 +420,12 @@ static NOINLINE int process_timer_stats(void) int idx; count = skip_whitespace(buf); - if (strcmp(strchrnul(count, ' '), " total events") == 0) - break; p = strchr(count, ','); if (!p) continue; *p++ = '\0'; + if (strcmp(skip_non_whitespace(count), " total events") == 0) + break; if (strchr(count, 'D')) continue; /* deferred */ p = skip_whitespace(p); /* points to pid now */ |