From eff325209596f7bb57a63ce66eb222d5b3a8f674 Mon Sep 17 00:00:00 2001 From: tron Date: Fri, 18 Feb 2005 08:49:04 +0000 Subject: (svn r1887) Stylistic change of ConExec() --- console_cmds.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'console_cmds.c') diff --git a/console_cmds.c b/console_cmds.c index aea87fa40..e7850924d 100644 --- a/console_cmds.c +++ b/console_cmds.c @@ -594,18 +594,15 @@ DEF_CONSOLE_CMD(ConNetworkConnect) DEF_CONSOLE_CMD(ConExec) { char cmd[1024]; - bool doerror; - if (argc<2) return NULL; + if (argc < 2) return NULL; - doerror = true; _script_file = fopen(argv[1], "r"); if (_script_file == NULL) { - if (argc>2) if (atoi(argv[2])==0) doerror=false; - if (doerror) IConsoleError("script file not found"); + if (argc <= 2 || atoi(argv[2]) != 0) IConsoleError("script file not found"); return NULL; - } + } _script_running = true; -- cgit v1.2.3-54-g00ecf