summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Smith <msmith@FreeBSD.org>1998-11-04 07:07:18 +0000
committerMike Smith <msmith@FreeBSD.org>1998-11-04 07:07:18 +0000
commit2cd5cac4ec9e5e02e931cc817995a6ba3fea2ebc (patch)
tree6d818334d3b868f9876ac03c14042c697ad51b89
parent1add1a81da67a9d40e0b3e1f60189d030325ee7f (diff)
Notes
-rwxr-xr-xsys/boot/ficl/softwords/softcore.pl5
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/boot/ficl/softwords/softcore.pl b/sys/boot/ficl/softwords/softcore.pl
index fc1e522f5ce4..8660b5b29162 100755
--- a/sys/boot/ficl/softwords/softcore.pl
+++ b/sys/boot/ficl/softwords/softcore.pl
@@ -77,10 +77,7 @@ print <<EOF
void ficlCompileSoftCore(FICL_VM *pVM)
{
- int ret = ficlExec(pVM, softWords);
- if (ret == VM_ERREXIT)
- assert(FALSE);
- return;
+ assert(ficlExec(pVM, softWords) != VM_ERREXIT);
}