diff options
author | Pavel Machek <pavel@ucw.cz> | 1999-03-17 14:04:33 +0100 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 1999-03-17 14:04:33 +0100 |
commit | 3c7ad64c57de77763357684fab919b2fc082a759 (patch) | |
tree | e0e40774a583b7217c6a17e1c1a0b20111dc5616 /filter | |
parent | 29df5739c455a954598c809c2e930abc41c8488e (diff) | |
download | bird-3c7ad64c57de77763357684fab919b2fc082a759.tar bird-3c7ad64c57de77763357684fab919b2fc082a759.zip |
Compilation fix for mj.
Diffstat (limited to 'filter')
-rw-r--r-- | filter/f-util.c | 2 |
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"); |