diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-06-28 18:14:01 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-06-28 18:14:01 -0400 |
commit | 5c0b8d9013560bb24805844d31a7fb3959ee1e8d (patch) | |
tree | 0338663c394b377749835edc0b8190648f0d523d /malloc | |
parent | 9113ea1f3f29b3aee710efc829e85a9772bcb836 (diff) | |
download | glibc-5c0b8d9013560bb24805844d31a7fb3959ee1e8d.tar glibc-5c0b8d9013560bb24805844d31a7fb3959ee1e8d.tar.gz glibc-5c0b8d9013560bb24805844d31a7fb3959ee1e8d.tar.bz2 glibc-5c0b8d9013560bb24805844d31a7fb3959ee1e8d.zip |
Fix quoting in some installed shell scripts
Diffstat (limited to 'malloc')
-rwxr-xr-x | malloc/memusage.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/malloc/memusage.sh b/malloc/memusage.sh index f1ccbb4d19..75d5f3ba39 100755 --- a/malloc/memusage.sh +++ b/malloc/memusage.sh @@ -24,7 +24,7 @@ TEXTDOMAIN=libc # Print usage message. do_usage() { - printf >&2 $"Try \`%s --help' or `%s --usage' for more information.\n" memusage memusage + printf >&2 $"Try \`%s --help' or \`%s --usage' for more information.\n" memusage memusage exit 1 } |