summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--filter/f-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/f-util.c b/filter/f-util.c
index 47c9144..7856d7f 100644
--- a/filter/f-util.c
+++ b/filter/f-util.c
@@ -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");