diff options
author | Roman Kyrylych <roman.kyrylych@gmail.com> | 2008-08-25 20:00:45 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-08-25 17:54:05 -0500 |
commit | ece3d3606ac273fb3e032dcffee82458deb0cd72 (patch) | |
tree | 6e830da7afe41a9cc476b4944bd010ab5a971805 | |
parent | 81853893a53a1f31061d30efc01a0e420359de0a (diff) | |
download | pacman-ece3d3606ac273fb3e032dcffee82458deb0cd72.tar.xz |
Add missing comma to -S --help message
Signed-off-by: Xavier Chantry <shiningxc@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r-- | src/pacman/pacman.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c index 04b5e491..81f07dac 100644 --- a/src/pacman/pacman.c +++ b/src/pacman/pacman.c @@ -134,7 +134,7 @@ static void usage(int op, const char * const myname) printf(_(" --ignore <pkg> ignore a package upgrade (can be used more than once)\n")); printf(_(" --ignoregroup <grp>\n" " ignore a group upgrade (can be used more than once)\n")); - printf(_(" -q --quiet show less information for query and search\n")); + printf(_(" -q, --quiet show less information for query and search\n")); } printf(_(" --config <path> set an alternate configuration file\n")); printf(_(" --logfile <path> set an alternate log file\n")); |