diff options
author | Jim Meyering <jim@meyering.net> | 1999-04-03 05:20:06 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-04-03 05:20:06 +0000 |
commit | cf691ec714de68d0a2d0dec53704b02e2ab52009 (patch) | |
tree | 45d129fabfa6477ac47b55c830762f5ca506d9cd /src/fold.c | |
parent | 7c2d5de6c7a61c075fe3fe8012301966c8dfb7b9 (diff) | |
download | coreutils-cf691ec714de68d0a2d0dec53704b02e2ab52009.tar.xz |
Use PROGRAM_NAME in place of string in parse_long_options call.
Diffstat (limited to 'src/fold.c')
-rw-r--r-- | src/fold.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fold.c b/src/fold.c index a3c387ec9..630a2f8c4 100644 --- a/src/fold.c +++ b/src/fold.c @@ -239,7 +239,7 @@ main (int argc, char **argv) bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); - parse_long_options (argc, argv, "fold", GNU_PACKAGE, VERSION, + parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION, "David MacKenzie", usage); break_spaces = count_bytes = have_read_stdin = 0; |