By the way: the right fix would be:

float
XDR_decode_float ( const xdr_data_t & f_Val )
{
    union {
      float f;
      xdr_data_t x;
    } tmp;
    tmp.x = XDR_decode_int32 (f_Val);
    return tmp.f;
}

Please use this one. And I believe, without looking into the code, that there 
are likely more of them ...

  Greetings

          Mathias

-- 
Mathias Fröhlich, email: [EMAIL PROTECTED]

_______________________________________________
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d

Reply via email to