Use 64-bit type for packet and content size
[babeltrace.git] / formats / ctf-text / types / float.c
index 0c559b0eba4e8be23d1ca7d0c3511b3127bd513e..77651124d000e2bb41942efc7b3ec0385802b5c6 100644 (file)
@@ -40,8 +40,8 @@ int ctf_text_float_write(struct stream_pos *ppos, struct definition *definition)
        fprintf(pos->fp, " ");
        if (pos->print_names)
                fprintf(pos->fp, "%s = ",
-                       g_quark_to_string(definition->name));
+                       rem_(g_quark_to_string(definition->name)));
 
-       fprintf(pos->fp, "%Lg\n", float_definition->value);
+       fprintf(pos->fp, "%g", float_definition->value);
        return 0;
 }
This page took 0.023671 seconds and 4 git commands to generate.