# HG changeset patch # User Matti Hamalainen # Date 1578772725 -7200 # Node ID 3bb2e0bdd1f0129503ec60505cca324f27507a93 # Parent e315bed7d7916bb5b86174d76060667de779d588 Cosmetics. diff -r e315bed7d791 -r 3bb2e0bdd1f0 sidinfo.c --- 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 ", 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 ", 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]);