diff options
author | Jim Meyering <jim@meyering.net> | 1996-04-24 03:23:37 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-04-24 03:23:37 +0000 |
commit | deeb3e0c494b5be92e5323c6adcfd3b6477cd3a7 (patch) | |
tree | b4a8ddcedf4d145f6f549d3061bc941478bfc86a | |
parent | 2b00449aa7df4e20182f9032ceb1f69294653477 (diff) | |
download | coreutils-deeb3e0c494b5be92e5323c6adcfd3b6477cd3a7.tar.xz |
(usage): Add missing close paren and open paren.
-rw-r--r-- | src/chroot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/chroot.c b/src/chroot.c index 95e68d810..96bd732c3 100644 --- a/src/chroot.c +++ b/src/chroot.c @@ -38,8 +38,8 @@ usage (int status) printf (_("\ Usage: %s [OPTION] NEWROOT [COMMAND...]\n or: %s OPTION\n\ -", program_name, program_name); - printf (_"\ +"), program_name, program_name); + printf (_("\ Run COMMAND with root directory set to NEWROOT.\n\ \n\ --help display this help and exit\n\ |