From cb548e1ed41a047e865d03c998b97bbd1174e59e Mon Sep 17 00:00:00 2001
From: Moe Jette <jette1@llnl.gov>
Date: Mon, 9 Jan 2006 17:30:39 +0000
Subject: [PATCH] no change in logic, just some code clean-up.

---
 src/sinfo/opts.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/sinfo/opts.c b/src/sinfo/opts.c
index e4da2e71cba..8eb564c6b96 100644
--- a/src/sinfo/opts.c
+++ b/src/sinfo/opts.c
@@ -46,8 +46,8 @@
 #include "src/sinfo/sinfo.h"
 
 /* getopt_long options, integers but not characters */
-#define OPT_LONG_HELP  0x100
-#define OPT_LONG_USAGE 0x101
+#define OPT_LONG_HELP   0x100
+#define OPT_LONG_USAGE  0x101
 #define OPT_LONG_HIDE	0x102
 
 /* FUNCTIONS */
@@ -75,7 +75,7 @@ extern void parse_command_line(int argc, char *argv[])
 	int option_index;
 	static struct option long_options[] = {
 		{"all",       no_argument,       0, 'a'},
-		{"bg",       no_argument,       0, 'b'},
+		{"bg",        no_argument,       0, 'b'},
 		{"dead",      no_argument,       0, 'd'},
 		{"exact",     no_argument,       0, 'e'},
 		{"noheader",  no_argument,       0, 'h'},
@@ -94,7 +94,7 @@ extern void parse_command_line(int argc, char *argv[])
 		{"version",   no_argument,       0, 'V'},
 		{"help",      no_argument,       0, OPT_LONG_HELP},
 		{"usage",     no_argument,       0, OPT_LONG_USAGE},
-		{"hide",     no_argument, 0, OPT_LONG_HIDE},
+		{"hide",      no_argument,       0, OPT_LONG_HIDE},
 		{NULL,        0,                 0, 0}
 	};
 
-- 
GitLab