Fix: missing parenthesis in offset_align_floor
[lttng-modules.git] / lib / align.h
index 4929c5124a719a4c48d9d3bcf04f6936b8f57021..a21169ea62bfce36faf9824be9fd0389fca5554b 100644 (file)
@@ -65,7 +65,7 @@
        ({                                                                     \
                BUILD_RUNTIME_BUG_ON((alignment) == 0                          \
                                   || ((alignment) & ((alignment) - 1)));      \
-               (((align_drift) - (alignment)) & ((alignment) - 1)           \
+               (((align_drift) - (alignment)) & ((alignment) - 1));           \
        })
 
 #endif /* __KERNEL__ */
This page took 0.024121 seconds and 4 git commands to generate.