X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=formats%2Fctf%2Ftypes%2Fstruct.c;h=7c0a249bf03812e1730370e4f30920df2f9285e8;hp=2a3fa4c5366c4c5730f988edb9cc74e2a812ed7a;hb=d11e9c4975d88591e2324b6b11f426a22995833f;hpb=46322b331aefc5739efd841df72d1928e35050e6 diff --git a/formats/ctf/types/struct.c b/formats/ctf/types/struct.c index 2a3fa4c5..7c0a249b 100644 --- a/formats/ctf/types/struct.c +++ b/formats/ctf/types/struct.c @@ -18,15 +18,11 @@ #include -void ctf_struct_begin(struct stream_pos *ppos, - const struct declaration_struct *struct_declaration) +void 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, struct_declaration->p.alignment); -} - -void ctf_struct_end(struct stream_pos *ppos, - const struct declaration_struct *struct_declaration) -{ + ctf_align_pos(pos, declaration->alignment); + struct_rw(ppos, definition); }