1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-30 09:59:10 +00:00

(svn r20211) -Codechange: Indented code should have curly braces around it.

This commit is contained in:
alberth
2010-07-24 10:14:39 +00:00
parent 645b6ce773
commit be6c058424
49 changed files with 206 additions and 177 deletions

View File

@@ -324,8 +324,9 @@ DEF_CONSOLE_CMD(ConRemove)
const char *file = argv[1];
const FiosItem *item = GetFiosItem(file);
if (item != NULL) {
if (!FiosDelete(item->name))
if (!FiosDelete(item->name)) {
IConsolePrintF(CC_ERROR, "%s: Failed to delete file", file);
}
} else {
IConsolePrintF(CC_ERROR, "%s: No such file or directory.", file);
}
@@ -889,8 +890,9 @@ DEF_CONSOLE_CMD(ConExec)
IConsoleCmdExec(cmdline);
}
if (ferror(script_file))
if (ferror(script_file)) {
IConsoleError("Encountered errror while trying to read from script file");
}
_script_running = false;
FioFCloseFile(script_file);