aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2017-03-29 07:31:26 +0300
committerGitHub <noreply@github.com>2017-03-29 07:31:26 +0300
commitf7a70de84a892344ba2d6d72184608ad4cf822b4 (patch)
tree5c5b8d1b7fa144e57c436632f0043ffb89c12279
parentb23201bb1a566d7e4ea84b76b3dcf2efcc025dac (diff)
parent17f77cf2c66ac5713953873f322b08d464100487 (diff)
downloadjansson-f7a70de84a892344ba2d6d72184608ad4cf822b4.zip
jansson-f7a70de84a892344ba2d6d72184608ad4cf822b4.tar.gz
jansson-f7a70de84a892344ba2d6d72184608ad4cf822b4.tar.bz2
Merge pull request #336 from akheron/issue-333
CMakeLists.txt: Remove extra parenthesis
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
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)