X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=types%2Ffloat.c;h=863173852c9baacc6bfbf7dbe5208cad55d89088;hp=dc97af48f1304d99003446b404bf6785169b1640;hb=56e603733d2a16aba6fdaf149ad6a4cd42e44eda;hpb=50cb9c56c5e3a2a37b63537a1604e5c209d17cd7 diff --git a/types/float.c b/types/float.c index dc97af48..86317385 100644 --- a/types/float.c +++ b/types/float.c @@ -61,13 +61,13 @@ struct declaration_float * float_declaration->sign = integer_declaration_new(1, byte_order, false, 1, 2, - CTF_STRING_NONE); + CTF_STRING_NONE, NULL); float_declaration->mantissa = integer_declaration_new(mantissa_len - 1, byte_order, false, 1, 10, - CTF_STRING_NONE); + CTF_STRING_NONE, NULL); float_declaration->exp = integer_declaration_new(exp_len, byte_order, true, 1, 10, - CTF_STRING_NONE); + CTF_STRING_NONE, NULL); return float_declaration; }