diff options
author | Jim Meyering <meyering@redhat.com> | 2012-01-07 16:54:26 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2012-01-07 16:54:26 +0100 |
commit | 101d1203c667ec3ab54a026dde43117563d4e944 (patch) | |
tree | b2391c4041f3122458342b77ba55f5f766ab67e5 /src/chgrp.c | |
parent | 22af6d97526e52e1fc14a86d811c92e421a67577 (diff) | |
download | coreutils-101d1203c667ec3ab54a026dde43117563d4e944.tar.xz |
maint: use new emit_try_help in place of equivalent fprintf
Run this command:
perl -0777 -pi -e \
's/fprintf \(stderr, _\("Try `%s --help.*\n.*;/emit_try_help ();/m'\
src/*.c
Diffstat (limited to 'src/chgrp.c')
-rw-r--r-- | src/chgrp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/chgrp.c b/src/chgrp.c index c4e7b139d..f4a2bf660 100644 --- a/src/chgrp.c +++ b/src/chgrp.c @@ -102,8 +102,7 @@ void usage (int status) { if (status != EXIT_SUCCESS) - fprintf (stderr, _("Try `%s --help' for more information.\n"), - program_name); + emit_try_help (); else { printf (_("\ |