X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=formats%2Fctf-text%2Ftypes%2Farray.c;h=b7770174b4ca3340dea73554ff7b9ee05e60bc3e;hb=c5e74408f9786219f6b44400dcf2098ab9cc78fb;hp=1b8d6bee261c82a8ae16d8ba5f76a43b60499747;hpb=1ae19169d9cb823765444d22cdb05cd2ed3f162f;p=babeltrace.git diff --git a/formats/ctf-text/types/array.c b/formats/ctf-text/types/array.c index 1b8d6bee..b7770174 100644 --- a/formats/ctf-text/types/array.c +++ b/formats/ctf-text/types/array.c @@ -19,19 +19,21 @@ #include #include -void ctf_text_array_write(struct stream_pos *ppos, struct definition *definition) +int ctf_text_array_write(struct stream_pos *ppos, struct definition *definition) { struct ctf_text_stream_pos *pos = ctf_text_pos(ppos); + int ret; if (!pos->dummy) { print_pos_tabs(pos); fprintf(pos->fp, "[\n"); pos->depth++; } - array_rw(ppos, definition); + ret = array_rw(ppos, definition); if (!pos->dummy) { pos->depth--; print_pos_tabs(pos); fprintf(pos->fp, "]\n"); } + return ret; }