summaryrefslogtreecommitdiffstats
path: root/sys/boot/common/module.c
diff options
context:
space:
mode:
authorjesper <jesper@FreeBSD.org>2001-06-10 11:15:37 +0000
committerjesper <jesper@FreeBSD.org>2001-06-10 11:15:37 +0000
commitc6985abc6580c48b533540a80766bbad9d49edf9 (patch)
treeab9a197c8025d2ed0b362a63d6add3837d457d40 /sys/boot/common/module.c
parentce21e1d44926ccec408abde6b84338ef76570223 (diff)
downloadFreeBSD-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
Diffstat (limited to 'sys/boot/common/module.c')
-rw-r--r--sys/boot/common/module.c2
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);
}
OpenPOWER on IntegriCloud