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.6.2~6 X-Git-Url: https://git.lttng.org/?p=lttng-modules.git;a=commitdiff_plain;h=40207cedd99f96743ad582263bb4cd819988fffb 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 46ee8ab9..1afdcd34 100644 --- a/lttng-kernel-version.h +++ b/lttng-kernel-version.h @@ -40,7 +40,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)) #ifdef UTS_UBUNTU_RELEASE_ABI #define LTTNG_UBUNTU_VERSION_CODE \