Commit 5e76d7be authored by Nils Goroll's avatar Nils Goroll

fix printf nit and cosmetics

parent 06fcbcf3
Pipeline #117 skipped
...@@ -52,8 +52,9 @@ static const char *post = ...@@ -52,8 +52,9 @@ static const char *post =
int int
main(void) { main(void) {
printf(pre); printf("%s", pre);
printf("#define DCS_MATCH_MEM_SZ %zu /* sizeof(struct dcs_matchstate) */\n", printf("#define DCS_MATCH_MEM_SZ %zu "
"/* sizeof(struct dcs_matchstate) */\n",
sizeof(struct dcs_matchstate)); sizeof(struct dcs_matchstate));
printf(post); printf("%s", post);
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment