diff --git a/procps/powertop.c b/procps/powertop.c index 5792048dc..3d98b9bda 100644 --- a/procps/powertop.c +++ b/procps/powertop.c @@ -376,7 +376,7 @@ static void process_irq_counts(void) name = p; strchrnul(name, '\n')[0] = '\0'; /* Save description of the interrupt */ - if (nr < 20000) + if (nr >= 20000) sprintf(irq_desc, " : %s", name); else sprintf(irq_desc, " : %s", name);