X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=formats%2Fctf%2Ftypes%2Fstruct.c;h=7c0a249bf03812e1730370e4f30920df2f9285e8;hb=8f390b0366dfa57a51cde50f28895a051d5550c1;hp=70c08219953200be6baa3931659ca3f505fbb51b;hpb=ccd7e1c86f36342b0b06651cc52df86bb663c271;p=babeltrace.git diff --git a/formats/ctf/types/struct.c b/formats/ctf/types/struct.c index 70c08219..7c0a249b 100644 --- a/formats/ctf/types/struct.c +++ b/formats/ctf/types/struct.c @@ -18,13 +18,11 @@ #include -void ctf_struct_begin(struct stream_pos *pos, - const struct type_class_struct *struct_class) +void ctf_struct_rw(struct stream_pos *ppos, struct definition *definition) { - align_pos(pos, struct_class->p.alignment); -} + struct declaration *declaration = definition->declaration; + struct ctf_stream_pos *pos = ctf_pos(ppos); -void ctf_struct_end(struct stream_pos *pos, - const struct type_class_struct *struct_class) -{ + ctf_align_pos(pos, declaration->alignment); + struct_rw(ppos, definition); }