diff options
author | Jim Meyering <jim@meyering.net> | 1993-10-05 18:29:39 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1993-10-05 18:29:39 +0000 |
commit | 712109716a7b75dda2d34751202d210acd879f6b (patch) | |
tree | 93943c37813a5b456347b7e6009ef10b9f782fba /src/od.c | |
parent | 3b5543d43131da003fcf75c5d9062da0199b3b88 (diff) | |
download | coreutils-712109716a7b75dda2d34751202d210acd879f6b.tar.xz |
merge with 1.8a
Diffstat (limited to 'src/od.c')
-rw-r--r-- | src/od.c | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -272,10 +272,10 @@ static enum size_spec integral_type_size[MAX_INTEGRAL_TYPE_SIZE + 1]; static enum size_spec fp_type_size[MAX_FP_TYPE_SIZE + 1]; /* If non-zero, display usage information and exit. */ -static int flag_help; +static int show_help; -/* If non-zero, print the version on standard error. */ -static int flag_version; +/* If non-zero, print the version on standard output then exit. */ +static int show_version; static struct option const long_options[] = { @@ -290,8 +290,8 @@ static struct option const long_options[] = {"compatible", no_argument, NULL, 'C'}, {"strings", optional_argument, NULL, 's'}, {"width", optional_argument, NULL, 'w'}, - {"help", no_argument, &flag_help, 1}, - {"version", no_argument, &flag_version, 1}, + {"help", no_argument, &show_help, 1}, + {"version", no_argument, &show_version, 1}, {NULL, 0, NULL, 0} }; @@ -1789,13 +1789,13 @@ main (argc, argv) } } - if (flag_version) + if (show_version) { - fprintf (stderr, "%s\n", version_string); + printf ("%s\n", version_string); exit (0); } - if (flag_help) + if (show_help) usage (); if (flag_dump_strings && n_specs > 0) |