diff options
author | jesper <jesper@FreeBSD.org> | 2001-06-10 11:15:37 +0000 |
---|---|---|
committer | jesper <jesper@FreeBSD.org> | 2001-06-10 11:15:37 +0000 |
commit | c6985abc6580c48b533540a80766bbad9d49edf9 (patch) | |
tree | ab9a197c8025d2ed0b362a63d6add3837d457d40 | |
parent | ce21e1d44926ccec408abde6b84338ef76570223 (diff) | |
download | FreeBSD-src-c6985abc6580c48b533540a80766bbad9d49edf9.zip FreeBSD-src-c6985abc6580c48b533540a80766bbad9d49edf9.tar.gz |
Fix a minor style bug in the last commit.
Submitted by: Adrian Steinmann <ast@marabu.ch>
MFC after: 2 days
-rw-r--r-- | sys/boot/common/module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/common/module.c b/sys/boot/common/module.c index 343ca8d..6fffd9d 100644 --- a/sys/boot/common/module.c +++ b/sys/boot/common/module.c @@ -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); } |