Fix: add missing parenthesis in ubuntu version check
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 27 May 2015 16:13:32 +0000 (12:13 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 27 May 2015 16:13:53 +0000 (12:13 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
lttng-kernel-version.h

index 46ee8ab9da4ff9b141272301f1295e6ee1d2c70a..1afdcd34bc942231cfa58c91a91320c9651a8f70 100644 (file)
@@ -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 \
This page took 0.025944 seconds and 4 git commands to generate.