From: Mathieu Desnoyers Date: Wed, 27 May 2015 16:13:32 +0000 (-0400) Subject: Fix: add missing parenthesis in ubuntu version check X-Git-Tag: v2.5.5~4 X-Git-Url: https://git.lttng.org/?a=commitdiff_plain;h=247c3cd66b24d6622c84806a66482b30a20a3a90;p=lttng-modules.git Fix: add missing parenthesis in ubuntu version check Signed-off-by: Mathieu Desnoyers --- diff --git a/lttng-kernel-version.h b/lttng-kernel-version.h index 8fad8b09..7dbb62b9 100644 --- a/lttng-kernel-version.h +++ b/lttng-kernel-version.h @@ -35,7 +35,7 @@ LINUX_VERSION_CODE < KERNEL_VERSION(a_high, b_high, c_high)) #define LTTNG_UBUNTU_KERNEL_VERSION(a, b, c, d) \ - (((a) << 24) + ((b) << 16) + (c << 8) + (d)) + (((a) << 24) + ((b) << 16) + ((c) << 8) + (d)) #define LTTNG_UBUNTU_VERSION_CODE \ ((LINUX_VERSION_CODE << 8) + UTS_UBUNTU_RELEASE_ABI)