X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=formats%2Fctf-text%2Ftypes%2Fsequence.c;h=1e19885cca75b6d7d296da0df40e69ee0d7518bc;hp=a0f8260c4777dc6962513cc304de476780ed676a;hb=c5e74408f9786219f6b44400dcf2098ab9cc78fb;hpb=2e8b37d41284e54bdb5af4bf5b51c5a616f69597 diff --git a/formats/ctf-text/types/sequence.c b/formats/ctf-text/types/sequence.c index a0f8260c..1e19885c 100644 --- a/formats/ctf-text/types/sequence.c +++ b/formats/ctf-text/types/sequence.c @@ -19,19 +19,21 @@ #include #include -void ctf_text_sequence_write(struct stream_pos *ppos, struct definition *definition) +int ctf_text_sequence_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++; } - sequence_rw(ppos, definition); + ret = sequence_rw(ppos, definition); if (!pos->dummy) { pos->depth--; print_pos_tabs(pos); fprintf(pos->fp, "]\n"); } + return ret; }