From 279d8bf108bd1367bdd3647e881146e1acf0123d Mon Sep 17 00:00:00 2001 From: Petri Lehtinen Date: Wed, 23 Mar 2011 08:25:50 +0200 Subject: [PATCH] Use the correct number of parens in JANSSON_VERSION_HEX macro --- src/jansson.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jansson.h b/src/jansson.h index 86399fd..0ab0dfd 100644 --- a/src/jansson.h +++ b/src/jansson.h @@ -31,7 +31,7 @@ extern "C" { for numeric comparisons, e.g. #if JANSSON_VERSION_HEX >= ... */ #define JANSSON_VERSION_HEX ((JANSSON_MAJOR_VERSION << 16) | \ (JANSSON_MINOR_VERSION << 8) | \ - (JANSSON_MICRO_VERSION << 0))) + (JANSSON_MICRO_VERSION << 0)) /* types */ -- 2.1.4