Revert part of 362772. It was causing problems for includes and making

the menus disappear.

Sponsored by: Netflix
This commit is contained in:
Warner Losh 2017-12-11 23:15:43 +00:00
parent ce5252c4ba
commit 2ccd1dd900
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=326784

View File

@ -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));
}