aboutsummaryrefslogtreecommitdiff
path: root/stand/common
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2017-12-11 23:15:43 +0000
committerWarner Losh <imp@FreeBSD.org>2017-12-11 23:15:43 +0000
commit2ccd1dd90026b66c47f190b6c6f830c070ee850e (patch)
tree486e0a7f7f9bd29cafb0fb8289d3c7aa98418314 /stand/common
parentce5252c4ba85ab02a41c5f16ef09f15cd5d08cfb (diff)
Notes
Diffstat (limited to 'stand/common')
-rw-r--r--stand/common/interp_forth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stand/common/interp_forth.c b/stand/common/interp_forth.c
index d06807a475a2..42e8ca30cd6c 100644
--- a/stand/common/interp_forth.c
+++ b/stand/common/interp_forth.c
@@ -354,7 +354,7 @@ interp_forth_incl(void *ctx, const char *filename)
"can't open %s\n", filename);
return (CMD_ERROR);
}
- return (ficlExecFD(softc->bf_vm, fd) == 0 ? CMD_OK : CMD_ERROR);
+ return (ficlExecFD(softc->bf_vm, fd));
}