Compilation fix for mj.
This commit is contained in:
parent
29df5739c4
commit
3c7ad64c57
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ interpret(struct f_inst *what)
|
||||||
case F_ERROR:
|
case F_ERROR:
|
||||||
case F_REJECT:
|
case F_REJECT:
|
||||||
res.type = T_RETURN;
|
res.type = T_RETURN;
|
||||||
res.val = (int) what->arg1;
|
res.val.i = (int) what->arg1;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
bug( "unknown return type: can not happen");
|
bug( "unknown return type: can not happen");
|
||||||
|
|
Loading…
Reference in a new issue