Fix a minor style bug in the last commit.

Submitted by:	Adrian Steinmann <ast@marabu.ch>
MFC after:	2 days
This commit is contained in:
Jesper Skriver 2001-06-10 11:15:37 +00:00
parent 96c2b04290
commit 48e312be90

View File

@ -100,7 +100,7 @@ command_load(int argc, char *argv[])
* Request to load a raw file?
*/
if (dofile) {
if (argc != 2 || (typestr == NULL) || (*typestr == 0)) {
if ((argc != 2) || (typestr == NULL) || (*typestr == 0)) {
command_errmsg = "invalid load type";
return(CMD_ERROR);
}