aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--procps/powertop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/procps/powertop.c b/procps/powertop.c
index 87efbe892..da7f05258 100644
--- a/procps/powertop.c
+++ b/procps/powertop.c
@@ -420,12 +420,12 @@ static NOINLINE int process_timer_stats(void)
420 int idx; 420 int idx;
421 421
422 count = skip_whitespace(buf); 422 count = skip_whitespace(buf);
423 if (strcmp(strchrnul(count, ' '), " total events") == 0)
424 break;
425 p = strchr(count, ','); 423 p = strchr(count, ',');
426 if (!p) 424 if (!p)
427 continue; 425 continue;
428 *p++ = '\0'; 426 *p++ = '\0';
427 if (strcmp(skip_non_whitespace(count), " total events") == 0)
428 break;
429 if (strchr(count, 'D')) 429 if (strchr(count, 'D'))
430 continue; /* deferred */ 430 continue; /* deferred */
431 p = skip_whitespace(p); /* points to pid now */ 431 p = skip_whitespace(p); /* points to pid now */