summaryrefslogtreecommitdiff
path: root/sys/boot/common/interp_forth.c
diff options
context:
space:
mode:
authorDaniel C. Sobral <dcs@FreeBSD.org>2000-06-14 19:37:00 +0000
committerDaniel C. Sobral <dcs@FreeBSD.org>2000-06-14 19:37:00 +0000
commit18ee60a57616434a5c49b4d75f07f57d63d1db60 (patch)
tree2cb18e672729b902c3f37a7af0ed82f0340f0679 /sys/boot/common/interp_forth.c
parent933aec2f75b7a3cbfcede381696c517e22f455d6 (diff)
Notes
Diffstat (limited to 'sys/boot/common/interp_forth.c')
-rw-r--r--sys/boot/common/interp_forth.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/boot/common/interp_forth.c b/sys/boot/common/interp_forth.c
index fa7925a7aa74..1cf60c437960 100644
--- a/sys/boot/common/interp_forth.c
+++ b/sys/boot/common/interp_forth.c
@@ -273,12 +273,8 @@ int
bf_run(char *line)
{
int result;
- CELL id;
- id = bf_vm->sourceID;
- bf_vm->sourceID.i = -1;
result = ficlExec(bf_vm, line);
- bf_vm->sourceID = id;
DEBUG("ficlExec '%s' = %d", line, result);
switch (result) {