changeset 321:3bb2e0bdd1f0

Cosmetics.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 11 Jan 2020 21:58:45 +0200
parents e315bed7d791
children 5dfce66cc390
files sidinfo.c
diffstat 1 files changed, 14 insertions(+), 14 deletions(-) [+]
line wrap: on
line diff
--- a/sidinfo.c	Sat Jan 11 20:18:24 2020 +0200
+++ b/sidinfo.c	Sat Jan 11 21:58:45 2020 +0200
@@ -119,21 +119,21 @@
 // Define option arguments
 static const th_optarg optList[] =
 {
-    { 0, '?', "help",       "Show this help", OPT_NONE },
-    { 1, 'v', "verbose",    "Be more verbose", OPT_NONE },
-    {10,   0, "license",    "Print out this program's license agreement", OPT_NONE },
+    {  0, '?', "help",       "Show this help", OPT_NONE },
+    { 10,   0, "license",    "Print out this program's license agreement", OPT_NONE },
+    {  1, 'v', "verbose",    "Be more verbose", OPT_NONE },
 
-    { 2, 'p', "parsable",   "Output in script-parsable format", OPT_NONE },
-    { 5, 'n', "noprefix",   "Output without field name prefix", OPT_NONE },
-    { 6, 'l', "line",       "Output in one line format, -l <field separator>", OPT_ARGREQ },
-    {11, 'e', "escape",     "Escape these characters in fields (see note)", OPT_ARGREQ },
-    { 3, 'f', "fields",     "Show only specified field(s)", OPT_ARGREQ },
-    { 4, 'x', "hex",        "Use hexadecimal values", OPT_NONE },
-    { 7, 'F', "format",     "Use given format string (see below)", OPT_ARGREQ },
-    { 8, 'H', "hvsc",       "Specify path to HVSC root directory", OPT_ARGREQ },
-    { 9, 'S', "sldb",       "Specify Songlengths.(txt|md5) file", OPT_ARGREQ },
-    {13, 'T', "stildb",     "Specify STIL.txt file", OPT_ARGREQ },
-    {12, 'R', "recurse",    "Recurse into sub-directories", OPT_NONE },
+    {  2, 'p', "parsable",   "Output in script-parsable format", OPT_NONE },
+    {  5, 'n', "noprefix",   "Output without field name prefix", OPT_NONE },
+    {  6, 'l', "line",       "Output in one line format, -l <field separator>", OPT_ARGREQ },
+    { 11, 'e', "escape",     "Escape these characters in fields (see note)", OPT_ARGREQ },
+    {  3, 'f', "fields",     "Show only specified field(s)", OPT_ARGREQ },
+    {  4, 'x', "hex",        "Use hexadecimal values", OPT_NONE },
+    {  7, 'F', "format",     "Use given format string (see below)", OPT_ARGREQ },
+    {  8, 'H', "hvsc",       "Specify path to HVSC root directory", OPT_ARGREQ },
+    {  9, 'S', "sldb",       "Specify Songlengths.(txt|md5) file", OPT_ARGREQ },
+    { 13, 'T', "stildb",     "Specify STIL.txt file", OPT_ARGREQ },
+    { 12, 'R', "recurse",    "Recurse into sub-directories", OPT_NONE },
 };
 
 static const int optListN = sizeof(optList) / sizeof(optList[0]);