Cleanup: namespace 'align' macros
[lttng-tools.git] / src / common / bytecode / bytecode.c
index 1798f9ba27b3fc035c6aa0af594a261e55f7b7a1..aadfc17a173ccf528182a023532b701f8c73e716 100644 (file)
@@ -42,7 +42,7 @@ static
 int32_t bytecode_reserve(struct lttng_bytecode_alloc **fb, uint32_t align, uint32_t len)
 {
        int32_t ret;
-       uint32_t padding = offset_align((*fb)->b.len, align);
+       uint32_t padding = lttng_offset_align((*fb)->b.len, align);
        uint32_t new_len = (*fb)->b.len + padding + len;
        uint32_t new_alloc_len = sizeof(struct lttng_bytecode_alloc) + new_len;
        uint32_t old_alloc_len = (*fb)->alloc_len;
This page took 0.023017 seconds and 4 git commands to generate.