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
lowerword == "nsf") {
Options |= EOptionNoStorageFormat;
}
else if (lowerword == "variable-name" || // synonyms
} else if (lowerword == "variable-name" || // synonyms
lowerword == "vn") {
Options |= EOptionOutputHexadecimal;
variableName = argv[1];
if (argc > 0) {
argc--;
argv++;
}
else
} else
Error("no <C-variable-name> provided for --variable-name");
break;
}