Skip to content
Snippets Groups Projects
Commit d50a0c43 authored by Mohammed Kabir's avatar Mohammed Kabir Committed by Lorenz Meier
Browse files

pwm : fix code style

parent f9158964
No related branches found
No related tags found
No related merge requests found
...@@ -928,10 +928,11 @@ pwm_main(int argc, char *argv[]) ...@@ -928,10 +928,11 @@ pwm_main(int argc, char *argv[])
if (group_mask != 0) { if (group_mask != 0) {
printf("channel group %u: channels", i); 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)) { if (group_mask & (1 << j)) {
printf(" %u", j + 1); printf(" %u", j + 1);
} }
}
printf("\n"); printf("\n");
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment