Skip to content
Snippets Groups Projects
Commit 58aa9eb8 authored by Alexandre Abadie's avatar Alexandre Abadie
Browse files

cpu/stm32_common/dist: prevent spi_divtable tool to add a trailing whitespace

parent 04f6e15f
No related branches found
No related tags found
No related merge requests found
...@@ -97,7 +97,7 @@ int main(int argc, char **argv) ...@@ -97,7 +97,7 @@ int main(int argc, char **argv)
printf(" %i%c /* -> %iHz */\n", printf(" %i%c /* -> %iHz */\n",
br, ((t < (tnum - 1)) ? ',' : ' '), real_clk(apb[bus], br)); br, ((t < (tnum - 1)) ? ',' : ' '), real_clk(apb[bus], br));
} }
printf(" }%c\n", ((bus == 0) ? ',' : ' ')); printf(" }%s\n", ((bus == 0) ? "," : ""));
} }
puts("};"); puts("};");
......
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