X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=formats%2Fctf-text%2Ftypes%2Farray.c;h=e2ed7b331e5dd94faa46305f143755f9501087f6;hp=97b557f1498806b6f4b8e8e9bef1bfc26882360d;hb=dcaa2e7d2902fbc35f1a8df30421c6d43bf15e8e;hpb=dd0365d91cfb990cf39c2c9ce50bb73423b6041e diff --git a/formats/ctf-text/types/array.c b/formats/ctf-text/types/array.c index 97b557f1..e2ed7b33 100644 --- a/formats/ctf-text/types/array.c +++ b/formats/ctf-text/types/array.c @@ -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, " ]");