mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
Userland: Return 1 when help text is shown for insufficient args
ArgsParser also does this, but we don't use that (yet) in a couple of places. Fix the behaviour manually for consistency.
This commit is contained in:
parent
f5c35fccca
commit
2a940464b8
Notes:
sideshowbarker
2024-07-18 17:02:33 +09:00
Author: https://github.com/linusg Commit: https://github.com/SerenityOS/serenity/commit/2a940464b86 Pull-request: https://github.com/SerenityOS/serenity/pull/7632 Reviewed-by: https://github.com/awesomekling
5 changed files with 5 additions and 5 deletions
|
@ -22,7 +22,7 @@ int main(int argc, char** argv)
|
|||
|
||||
if (argc < 3) {
|
||||
warnln("usage: chown <uid[:gid]> <path>");
|
||||
return 0;
|
||||
return 1;
|
||||
}
|
||||
|
||||
uid_t new_uid = -1;
|
||||
|
|
|
@ -14,7 +14,7 @@ int main(int argc, char** argv)
|
|||
{
|
||||
if (argc < 2) {
|
||||
warnln("usage: fgrep <str>");
|
||||
return 0;
|
||||
return 1;
|
||||
}
|
||||
for (;;) {
|
||||
char buf[4096];
|
||||
|
|
|
@ -16,7 +16,7 @@ int main(int argc, char** argv)
|
|||
{
|
||||
if (argc < 3) {
|
||||
warnln("usage: flock <path> <command...>");
|
||||
return 0;
|
||||
return 1;
|
||||
}
|
||||
|
||||
pid_t child_pid;
|
||||
|
|
|
@ -44,7 +44,7 @@ int main(int argc, char** argv)
|
|||
if (argc != 2 || !strcmp(argv[1], "--help")) {
|
||||
warnln("usage: gron <file>");
|
||||
warnln("Print each value in a JSON file with its fully expanded key.");
|
||||
return 0;
|
||||
return argc != 2 ? 1 : 0;
|
||||
}
|
||||
auto file = Core::File::construct(argv[1]);
|
||||
if (!file->open(Core::OpenMode::ReadOnly)) {
|
||||
|
|
|
@ -18,7 +18,7 @@ constexpr unsigned encoded_device(unsigned major, unsigned minor)
|
|||
static int usage()
|
||||
{
|
||||
warnln("usage: mknod <name> <c|b|p> [<major> <minor>]");
|
||||
return 0;
|
||||
return 1;
|
||||
}
|
||||
|
||||
int main(int argc, char** argv)
|
||||
|
|
Loading…
Reference in a new issue