From: Pavel Machek Date: Wed, 17 Mar 1999 13:04:33 +0000 (+0000) Subject: Compilation fix for mj. X-Git-Tag: v1.2.0~1661 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c7ad64c57de77763357684fab919b2fc082a759;p=thirdparty%2Fbird.git Compilation fix for mj. --- diff --git a/filter/f-util.c b/filter/f-util.c index 47c9144c4..7856d7f6b 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");