staging: usbip: fix up alignment in long options list
authorAnthony Foiani <anthony.foiani@gmail.com>
Fri, 23 Aug 2013 04:06:42 +0000 (22:06 -0600)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 23 Aug 2013 16:54:27 +0000 (09:54 -0700)
Re-align the option lists.

Signed-off-by: Anthony Foiani <anthony.foiani@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/usbip/userspace/src/usbip.c
drivers/staging/usbip/userspace/src/usbipd.c

index b4f299e..04a5f20 100644 (file)
@@ -139,10 +139,10 @@ static int run_command(const struct command *cmd, int argc, char *argv[])
 int main(int argc, char *argv[])
 {
        static const struct option opts[] = {
-               { "debug", no_argument, NULL, 'd' },
-               { "log",   no_argument, NULL, 'l' },
-               { "tcp-port",  required_argument, NULL, 't' },
-               { NULL,    0,           NULL,  0  }
+               { "debug",    no_argument,       NULL, 'd' },
+               { "log",      no_argument,       NULL, 'l' },
+               { "tcp-port", required_argument, NULL, 't' },
+               { NULL,       0,                 NULL,  0  }
        };
 
        char *cmd;
index f41ba5b..1c76cfd 100644 (file)
@@ -560,13 +560,13 @@ static int do_standalone_mode(int daemonize)
 int main(int argc, char *argv[])
 {
        static const struct option longopts[] = {
-               { "daemon",  no_argument, NULL, 'D' },
-               { "debug",   no_argument, NULL, 'd' },
-               { "pid",     optional_argument, NULL, 'P' },
+               { "daemon",   no_argument,       NULL, 'D' },
+               { "debug",    no_argument,       NULL, 'd' },
+               { "pid",      optional_argument, NULL, 'P' },
                { "tcp-port", required_argument, NULL, 't' },
-               { "help",    no_argument, NULL, 'h' },
-               { "version", no_argument, NULL, 'v' },
-               { NULL,      0,           NULL,  0  }
+               { "help",     no_argument,       NULL, 'h' },
+               { "version",  no_argument,       NULL, 'v' },
+               { NULL,       0,                 NULL,  0  }
        };
 
        enum {