Namespace the struct definition
[babeltrace.git] / formats / ctf-text / types / array.c
index 97b557f1498806b6f4b8e8e9bef1bfc26882360d..d9f57a2f7133965370dd78d8fedd7d107e1e77ed 100644 (file)
@@ -29,7 +29,7 @@
 #include <babeltrace/ctf-text/types.h>
 #include <stdio.h>
 
-int ctf_text_array_write(struct stream_pos *ppos, struct definition *definition)
+int ctf_text_array_write(struct bt_stream_pos *ppos, struct bt_definition *definition)
 {
        struct ctf_text_stream_pos *pos = ctf_text_pos(ppos);
        struct definition_array *array_definition =
@@ -63,7 +63,7 @@ int ctf_text_array_write(struct stream_pos *ppos, struct definition *definition)
                            && integer_declaration->p.alignment == CHAR_BIT)) {
                                pos->string = array_definition->string;
                                g_string_assign(array_definition->string, "");
-                               ret = array_rw(ppos, definition);
+                               ret = bt_array_rw(ppos, definition);
                                pos->string = NULL;
                        }
                        fprintf(pos->fp, "\"%s\"", array_definition->string->str);
@@ -77,7 +77,7 @@ int ctf_text_array_write(struct stream_pos *ppos, struct definition *definition)
        }
        field_nr_saved = pos->field_nr;
        pos->field_nr = 0;
-       ret = array_rw(ppos, definition);
+       ret = bt_array_rw(ppos, definition);
        if (!pos->dummy) {
                pos->depth--;
                fprintf(pos->fp, " ]");
This page took 0.023075 seconds and 4 git commands to generate.