Removed tabs and replaced with spaces. Changed layout for "else if"

This commit is contained in:
Flavio
2017-02-15 14:29:33 -08:00
parent aea3c890d3
commit 15017db971
2 changed files with 19 additions and 21 deletions

View File

@@ -303,16 +303,14 @@ void ProcessArguments(int argc, char* argv[])
} else if (lowerword == "no-storage-format" || // synonyms } else if (lowerword == "no-storage-format" || // synonyms
lowerword == "nsf") { lowerword == "nsf") {
Options |= EOptionNoStorageFormat; Options |= EOptionNoStorageFormat;
} } else if (lowerword == "variable-name" || // synonyms
else if (lowerword == "variable-name" || // synonyms
lowerword == "vn") { lowerword == "vn") {
Options |= EOptionOutputHexadecimal; Options |= EOptionOutputHexadecimal;
variableName = argv[1]; variableName = argv[1];
if (argc > 0) { if (argc > 0) {
argc--; argc--;
argv++; argv++;
} } else
else
Error("no <C-variable-name> provided for --variable-name"); Error("no <C-variable-name> provided for --variable-name");
break; break;
} }