diff options
| author | Mike Smith <msmith@FreeBSD.org> | 1998-11-04 07:07:18 +0000 |
|---|---|---|
| committer | Mike Smith <msmith@FreeBSD.org> | 1998-11-04 07:07:18 +0000 |
| commit | 2cd5cac4ec9e5e02e931cc817995a6ba3fea2ebc (patch) | |
| tree | 6d818334d3b868f9876ac03c14042c697ad51b89 | |
| parent | 1add1a81da67a9d40e0b3e1f60189d030325ee7f (diff) | |
Notes
| -rwxr-xr-x | sys/boot/ficl/softwords/softcore.pl | 5 |
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); } |
