]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Compilation fix for mj.
authorPavel Machek <pavel@ucw.cz>
Wed, 17 Mar 1999 13:04:33 +0000 (13:04 +0000)
committerPavel Machek <pavel@ucw.cz>
Wed, 17 Mar 1999 13:04:33 +0000 (13:04 +0000)
filter/f-util.c

index 47c9144c41056b7e19267625caf5122fd1c04d9c..7856d7f6b7ab4e76b842b4ec5abaff83c97223f9 100644 (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");