namespace the declaration functions
[babeltrace.git] / formats / ctf / types / float.c
index fc7c39c1b412f794151ae34cc6678489dc543d07..2dfef86ee49dc4df4f017c39d8ce0be128602ddf 100644 (file)
@@ -282,12 +282,12 @@ static
 void __attribute__((constructor)) ctf_float_init(void)
 {
        static_float_declaration =
-               float_declaration_new(FLT_MANT_DIG,
+               bt_float_declaration_new(FLT_MANT_DIG,
                                sizeof(float) * CHAR_BIT - FLT_MANT_DIG,
                                BYTE_ORDER,
                                __alignof__(float));
        static_double_declaration =
-               float_declaration_new(DBL_MANT_DIG,
+               bt_float_declaration_new(DBL_MANT_DIG,
                                sizeof(double) * CHAR_BIT - DBL_MANT_DIG,
                                BYTE_ORDER,
                                __alignof__(double));
This page took 0.023017 seconds and 4 git commands to generate.