Cleanup: namespace 'align' macros
[lttng-tools.git] / src / common / kernel-ctl / kernel-ctl.c
index 34d3356e99967e68271aa00d460d63bf3103331c..c535054cc1ca9d09b7a21d56b0f67c38fc18a896 100644 (file)
@@ -179,7 +179,7 @@ int kernctl_syscall_mask(int fd, char **syscall_mask, uint32_t *nr_bits)
                goto end;
        }
 
-       array_alloc_len = ALIGN(kmask_len.len, 8) >> 3;
+       array_alloc_len = lttng_align_ceil(kmask_len.len, 8) >> 3;
 
        kmask = zmalloc(sizeof(*kmask) + array_alloc_len);
        if (!kmask) {
This page took 0.023072 seconds and 4 git commands to generate.