X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=src%2Fplugins%2Fctf%2Fcommon%2Fbfcr%2Fbfcr.c;h=e3c851793c74595d8f38f8454deedded463784a0;hp=9eb76dcb1b67e62020047f6e9b3f7e64fdf29a88;hb=328342cd737582216dc7b8b7d558b2a1bf8ea5e8;hpb=95651695473495501fc6b2c4a1cf6a78cfb3cd6a diff --git a/src/plugins/ctf/common/bfcr/bfcr.c b/src/plugins/ctf/common/bfcr/bfcr.c index 9eb76dcb..e3c85179 100644 --- a/src/plugins/ctf/common/bfcr/bfcr.c +++ b/src/plugins/ctf/common/bfcr/bfcr.c @@ -968,7 +968,7 @@ size_t bits_to_skip_to_align_to(struct bt_bfcr *bfcr, size_t align) { size_t aligned_packet_at; - aligned_packet_at = ALIGN(packet_at(bfcr), align); + aligned_packet_at = BT_ALIGN(packet_at(bfcr), align); return aligned_packet_at - packet_at(bfcr); }