mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 05:27:46 +00:00
LibC: Fix some incorrect printf usages
This commit is contained in:
parent
6b01d1cf14
commit
d780e2265d
10 changed files with 19 additions and 19 deletions
|
@ -30,7 +30,7 @@
|
|||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
const char* g_usage = R"(Usage:
|
||||
const char* const g_usage = R"(Usage:
|
||||
seq [-h|--help]
|
||||
seq LAST
|
||||
seq FIRST LAST
|
||||
|
@ -39,7 +39,7 @@ const char* g_usage = R"(Usage:
|
|||
|
||||
static void print_usage(FILE* stream)
|
||||
{
|
||||
fprintf(stream, g_usage);
|
||||
fputs(g_usage, stream);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue