X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=formats%2Fctf%2Ftypes%2Fstruct.c;h=2913f4d0e2d41d6099e6cfda5ce18339826b224c;hp=7c0a249bf03812e1730370e4f30920df2f9285e8;hb=c5e74408f9786219f6b44400dcf2098ab9cc78fb;hpb=2e8b37d41284e54bdb5af4bf5b51c5a616f69597 diff --git a/formats/ctf/types/struct.c b/formats/ctf/types/struct.c index 7c0a249b..2913f4d0 100644 --- a/formats/ctf/types/struct.c +++ b/formats/ctf/types/struct.c @@ -18,11 +18,11 @@ #include -void ctf_struct_rw(struct stream_pos *ppos, struct definition *definition) +int ctf_struct_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); - struct_rw(ppos, definition); + return struct_rw(ppos, definition); }