X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=formats%2Fctf%2Ftypes%2Fsequence.c;h=acd4c7c0fca8310efc5bc890283525122d533fa1;hp=1f36a49f851e33b1b3b3764e91742ca25921488b;hb=c5e74408f9786219f6b44400dcf2098ab9cc78fb;hpb=2e8b37d41284e54bdb5af4bf5b51c5a616f69597 diff --git a/formats/ctf/types/sequence.c b/formats/ctf/types/sequence.c index 1f36a49f..acd4c7c0 100644 --- a/formats/ctf/types/sequence.c +++ b/formats/ctf/types/sequence.c @@ -18,11 +18,11 @@ #include -void ctf_sequence_rw(struct stream_pos *ppos, struct definition *definition) +int ctf_sequence_rw(struct stream_pos *ppos, struct definition *definition) { struct declaration *declaration = definition->declaration; struct ctf_stream_pos *pos = ctf_pos(ppos); ctf_align_pos(pos, declaration->alignment); - sequence_rw(ppos, definition); + return sequence_rw(ppos, definition); }