mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 09:14:58 +00:00
pkill: Initialize display_number_of_matches
to false
This ensures the number of matches is not displayed when the `-c` option is not specified.
This commit is contained in:
parent
cbf84152df
commit
0d71db6721
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ ErrorOr<int> serenity_main(Main::Arguments args)
|
|||
TRY(Core::System::unveil("/etc/passwd", "r"));
|
||||
TRY(Core::System::unveil(nullptr, nullptr));
|
||||
|
||||
bool display_number_of_matches;
|
||||
bool display_number_of_matches = false;
|
||||
bool case_insensitive = false;
|
||||
bool echo = false;
|
||||
bool exact_match = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue