Commit eaaa5f5a authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Minor flexelinting

parent 06095707
......@@ -700,7 +700,7 @@ mgt_DumpRstCli(void)
continue;
printf(".. _ref_cli_");
for (p = cp->request; *p; p++)
putchar(*p == '.' ? '_' : *p);
fputc(*p == '.' ? '_' : *p, stdout);
printf(":\n\n");
printf("%s\n", cp->syntax);
for (j = 0; j < strlen(cp->syntax); j++)
......
......@@ -127,6 +127,7 @@
-esym(534, fprintf)
-esym(534, vfprintf)
-esym(534, sprintf)
-esym(534, fputc)
-esym(534, memset)
-esym(534, memcpy)
......
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