Skip to content

Commit

Permalink
pwm : fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
mhkabir authored and LorenzMeier committed Apr 2, 2017
1 parent f915896 commit d50a0c4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/systemcmds/pwm/pwm.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}
Expand Down

0 comments on commit d50a0c4

Please sign in to comment.