summaryrefslogtreecommitdiffstats
path: root/filter/f-util.c
diff options
context:
space:
mode:
authorPavel Machek <pavel@ucw.cz>1999-03-17 14:04:33 +0100
committerPavel Machek <pavel@ucw.cz>1999-03-17 14:04:33 +0100
commit3c7ad64c57de77763357684fab919b2fc082a759 (patch)
treee0e40774a583b7217c6a17e1c1a0b20111dc5616 /filter/f-util.c
parent29df5739c455a954598c809c2e930abc41c8488e (diff)
downloadbird-3c7ad64c57de77763357684fab919b2fc082a759.tar
bird-3c7ad64c57de77763357684fab919b2fc082a759.zip
Compilation fix for mj.
Diffstat (limited to 'filter/f-util.c')
-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");