From: Mathieu Desnoyers Date: Fri, 16 Jan 2015 16:33:00 +0000 (-0500) Subject: Fix: missing parenthesis in offset_align_floor X-Git-Tag: v2.6.0~2 X-Git-Url: http://git.liburcu.org/?p=lttng-ust.git;a=commitdiff_plain;h=e7ec8848b087ec2a2b37cded15d7b904eaf80a63 Fix: missing parenthesis in offset_align_floor Is currently unused. Triggers a compile error when used. Signed-off-by: Mathieu Desnoyers --- diff --git a/include/lttng/align.h b/include/lttng/align.h index 1b881059..ebf03e8d 100644 --- a/include/lttng/align.h +++ b/include/lttng/align.h @@ -66,7 +66,7 @@ ({ \ LTTNG_BUILD_RUNTIME_BUG_ON((alignment) == 0 \ || ((alignment) & ((alignment) - 1))); \ - (((align_drift) - (alignment)) & ((alignment) - 1); \ + (((align_drift) - (alignment)) & ((alignment) - 1)); \ }) #endif /* _UST_ALIGN_H */