Skip to content

Commit

Permalink
Make CLANG happy (-Wembedded-directive)
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Lange authored and Daniel Lange committed Apr 7, 2022
1 parent 6a7b3fd commit df955c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions CommandLine.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,17 @@ static void printHelpFlag(const char* name) {
"-d --delay=DELAY Set the delay between updates, in tenths of seconds\n"
"-F --filter=FILTER Show only the commands matching the given filter\n"
"-h --help Print this help screen\n"
"-H --highlight-changes[=DELAY] Highlight new and old processes\n"
"-H --highlight-changes[=DELAY] Highlight new and old processes\n", name);
#ifdef HAVE_GETMOUSE
"-M --no-mouse Disable the mouse\n"
printf("-M --no-mouse Disable the mouse\n");
#endif
"-p --pid=PID[,PID,PID...] Show only the given PIDs\n"
printf("-p --pid=PID[,PID,PID...] Show only the given PIDs\n"
" --readonly Disable all system and process changing features\n"
"-s --sort-key=COLUMN Sort by COLUMN in list view (try --sort-key=help for a list)\n"
"-t --tree Show the tree view (can be combined with -s)\n"
"-u --user[=USERNAME] Show only processes for a given user (or $USER)\n"
"-U --no-unicode Do not use unicode but plain ASCII\n"
"-V --version Print version info\n", name);
"-V --version Print version info\n");
Platform_longOptionsUsage(name);
printf("\n"
"Long options may be passed with a single dash.\n\n"
Expand Down

0 comments on commit df955c8

Please sign in to comment.