Use inheritance for trace descriptor and positions
[babeltrace.git] / formats / ctf / types / sequence.c
index 24e09069e57cd7f4581fbc58dd7ab65a986c5907..640f451735ada1c3867c01058e69c881063a3fce 100644 (file)
 
 #include <babeltrace/ctf/types.h>
 
 
 #include <babeltrace/ctf/types.h>
 
-void ctf_sequence_begin(struct stream_pos *pos,
+void ctf_sequence_begin(struct stream_pos *ppos,
                        const struct declaration_sequence *sequence_declaration)
 {
                        const struct declaration_sequence *sequence_declaration)
 {
-       align_pos(pos, sequence_declaration->p.alignment);
+       struct ctf_stream_pos *pos = ctf_pos(ppos);
+
+       ctf_align_pos(pos, sequence_declaration->p.alignment);
 }
 
 void ctf_sequence_end(struct stream_pos *pos,
 }
 
 void ctf_sequence_end(struct stream_pos *pos,
This page took 0.022942 seconds and 4 git commands to generate.