mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-24 10:18:59 +00:00
Userland: Fix many compiler warnings.
This commit is contained in:
parent
0deade2883
commit
5980007e44
Notes:
sideshowbarker
2024-07-19 13:31:17 +09:00
Author: https://github.com/awesomekling
Commit: 5980007e44
13 changed files with 22 additions and 19 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue