Implement clock mapping within integer type
[babeltrace.git] / types / float.c
index dc97af48f1304d99003446b404bf6785169b1640..863173852c9baacc6bfbf7dbe5208cad55d89088 100644 (file)
@@ -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;
 }
 
This page took 0.022631 seconds and 4 git commands to generate.