X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src%2Fplugins%2Fctf%2Fcommon%2Fbfcr%2Fbfcr.cpp;h=7014f10201b5a696d914958c93a89713091d8846;hb=d50d46f31cc000f03601eeaf8a0806a0c183c1d0;hp=3c204b6a3a20287b9918bc480b56fe33531c6cae;hpb=c8a4375195b0ca586c43e5733dfc0266b4ba8a50;p=babeltrace.git diff --git a/src/plugins/ctf/common/bfcr/bfcr.cpp b/src/plugins/ctf/common/bfcr/bfcr.cpp index 3c204b6a..7014f102 100644 --- a/src/plugins/ctf/common/bfcr/bfcr.cpp +++ b/src/plugins/ctf/common/bfcr/bfcr.cpp @@ -238,7 +238,7 @@ static int stack_push(struct stack *stack, struct ctf_field_class *base_class, s g_array_set_size(stack->entries, stack->size + 1); } - entry = &g_array_index(stack->entries, struct stack_entry, stack->size); + entry = &bt_g_array_index(stack->entries, struct stack_entry, stack->size); entry->base_class = base_class; entry->base_len = base_len; entry->index = 0; @@ -335,7 +335,7 @@ static inline struct stack_entry *stack_top(struct stack *stack) { BT_ASSERT_DBG(stack); BT_ASSERT_DBG(stack_size(stack)); - return &g_array_index(stack->entries, struct stack_entry, stack->size - 1); + return &bt_g_array_index(stack->entries, struct stack_entry, stack->size - 1); } static inline size_t available_bits(struct bt_bfcr *bfcr)