diff --git a/src/systemcmds/pwm/pwm.c b/src/systemcmds/pwm/pwm.c index 6a84e20758..974b40f404 100644 --- a/src/systemcmds/pwm/pwm.c +++ b/src/systemcmds/pwm/pwm.c @@ -928,10 +928,11 @@ pwm_main(int argc, char *argv[]) if (group_mask != 0) { printf("channel group %u: channels", i); - for (unsigned j = 0; j < 32; j++) + for (unsigned j = 0; j < 32; j++) { if (group_mask & (1 << j)) { printf(" %u", j + 1); } + } printf("\n"); }