diff options
author | Jim Meyering <meyering@redhat.com> | 2010-05-01 13:53:46 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2010-05-31 11:02:21 +0200 |
commit | 5591f19e9cbee3598d23ea728fdebb396e2df89a (patch) | |
tree | 4de55142baa30b38401642da990ea603999e2c16 | |
parent | 78c1111c004352ea296fc2bb4cb579c8ec1646db (diff) | |
download | coreutils-5591f19e9cbee3598d23ea728fdebb396e2df89a.tar.xz |
maint: correct indentation of case_GETOPT_* macro uses
* src/base64.c (main): Correct indentation of syntactically
questionable case_GETOPT_HELP_CHAR and case_GETOPT_VERSION_CHAR macros.
* src/who.c (main): Likewise.
-rw-r--r-- | src/base64.c | 4 | ||||
-rw-r--r-- | src/who.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/base64.c b/src/base64.c index 41e9dea93..fddb61c9d 100644 --- a/src/base64.c +++ b/src/base64.c @@ -269,9 +269,9 @@ main (int argc, char **argv) ignore_garbage = true; break; - case_GETOPT_HELP_CHAR; + case_GETOPT_HELP_CHAR; - case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS); + case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS); default: usage (EXIT_FAILURE); @@ -789,9 +789,9 @@ main (int argc, char **argv) do_lookup = true; break; - case_GETOPT_HELP_CHAR; + case_GETOPT_HELP_CHAR; - case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS); + case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS); default: usage (EXIT_FAILURE); |