From: Petri Lehtinen Date: Wed, 23 Mar 2011 06:25:50 +0000 (+0200) Subject: Use the correct number of parens in JANSSON_VERSION_HEX macro X-Git-Tag: v2.0.1~3 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=jansson.git;a=commitdiff_plain;h=279d8bf108bd1367bdd3647e881146e1acf0123d Use the correct number of parens in JANSSON_VERSION_HEX macro --- 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 */