1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 16:07:45 +00:00

Userland: Fix many compiler warnings.

This commit is contained in:
Andreas Kling 2019-06-22 15:47:08 +02:00
parent 0deade2883
commit 5980007e44
13 changed files with 22 additions and 19 deletions

View file

@ -39,7 +39,7 @@ int main(int argc, char** argv)
args_parser.add_arg("s", "Single shot - this instructs the program to only return one pid");
args_parser.add_arg("o", "pid", "Tells pidof to omit processes with that pid. The special pid %PPID can be used to name the parent process of the pidof program.");
CArgsParserResult args = args_parser.parse(argc, (const char**)argv);
CArgsParserResult args = args_parser.parse(argc, argv);
bool s_arg = args.is_present("s");
bool o_arg = args.is_present("o");