X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=types%2Ffloat.c;h=2306d94f1b17cecd48df03b89343efe507fe8256;hp=5ce6bb43628cfa907c32228be83c03696de8d30a;hb=164078da31b3612e3618e8e8046a3866cb22f80e;hpb=b7e35badc2eac52e27b802a9078bfb7c8f3b04a7 diff --git a/types/float.c b/types/float.c index 5ce6bb43..2306d94f 100644 --- a/types/float.c +++ b/types/float.c @@ -57,11 +57,11 @@ struct declaration_float * float_declaration->byte_order = byte_order; float_declaration->sign = integer_declaration_new(1, - byte_order, false, 1); + byte_order, false, 1, 2); float_declaration->mantissa = integer_declaration_new(mantissa_len - 1, - byte_order, false, 1); + byte_order, false, 1, 10); float_declaration->exp = integer_declaration_new(exp_len, - byte_order, true, 1); + byte_order, true, 1, 10); return float_declaration; }