diff options
author | Rhin <ryanrhin@gmail.com> | 2019-06-30 00:36:14 -0500 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-30 07:36:14 +0200 |
commit | ce0b615bef6cd572114fe4102c0b8326ad94a575 (patch) | |
tree | 3daa7a9525edda5a0e58384719038ae5472d2511 /Userland/id.cpp | |
parent | 806b91b444f4072a8c1fe2a465899a91a17736b9 (diff) | |
download | serenity-ce0b615bef6cd572114fe4102c0b8326ad94a575.zip |
Userland: Fixed "id" usage error typo (#254)
Diffstat (limited to 'Userland/id.cpp')
-rw-r--r-- | Userland/id.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/id.cpp b/Userland/id.cpp index c5325ea94a..2c5f811d4b 100644 --- a/Userland/id.cpp +++ b/Userland/id.cpp @@ -32,7 +32,7 @@ int main(int argc, char** argv) break; default: - fprintf(stderr, "usage: ls [-%s] [paths...]\n", valid_option_characters); + fprintf(stderr, "usage: id [-%s]\n", valid_option_characters); return 1; } } |