Compilation fix for mj.

This commit is contained in:
Pavel Machek 1999-03-17 13:04:33 +00:00
parent 29df5739c4
commit 3c7ad64c57

View file

@ -121,7 +121,7 @@ interpret(struct f_inst *what)
case F_ERROR:
case F_REJECT:
res.type = T_RETURN;
res.val = (int) what->arg1;
res.val.i = (int) what->arg1;
break;
default:
bug( "unknown return type: can not happen");