From 17f77cf2c66ac5713953873f322b08d464100487 Mon Sep 17 00:00:00 2001 From: Petri Lehtinen Date: Wed, 29 Mar 2017 07:08:19 +0300 Subject: CMakeLists.txt: Remove extra parenthesis Fixes #333 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b239333..418d8b3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -250,7 +250,7 @@ endif () # detect what to use for the 64 bit type. # Note: I will prefer long long if I can get it, as that is what the automake system aimed for. if (NOT DEFINED JSON_INT_T) - if (HAVE_LONG_LONG_INT AND ((${LONG_LONG_INT}) EQUAL 8)) + if (HAVE_LONG_LONG_INT AND (${LONG_LONG_INT} EQUAL 8)) set (JSON_INT_T "long long") elseif (HAVE_INT64_T) set (JSON_INT_T int64_t) -- cgit v1.1