Use inheritance for trace descriptor and positions
[babeltrace.git] / formats / ctf / types / struct.c
index dc3a06eb0a8bcda6b6474d7a426d275fee5f0ba8..2a3fa4c5366c4c5730f988edb9cc74e2a812ed7a 100644 (file)
 
 #include <babeltrace/ctf/types.h>
 
-void ctf_struct_begin(struct stream_pos *pos,
+void ctf_struct_begin(struct stream_pos *ppos,
                      const struct declaration_struct *struct_declaration)
 {
-       align_pos(pos, struct_declaration->p.alignment);
+       struct ctf_stream_pos *pos = ctf_pos(ppos);
+
+       ctf_align_pos(pos, struct_declaration->p.alignment);
 }
 
-void ctf_struct_end(struct stream_pos *pos,
+void ctf_struct_end(struct stream_pos *ppos,
                    const struct declaration_struct *struct_declaration)
 {
 }
This page took 0.02311 seconds and 4 git commands to generate.