From 7cca2d275f471d1b2ffd60187ebb96d8d68e3a5b Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Tue, 28 Oct 2014 08:12:54 +0100 Subject: [PATCH] Fix incorrect #ifdef refs #7454 --- lib/base/json.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/base/json.cpp b/lib/base/json.cpp index 03dd61789..a98949e82 100644 --- a/lib/base/json.cpp +++ b/lib/base/json.cpp @@ -34,7 +34,7 @@ using namespace icinga; static void Encode(yajl_gen handle, const Value& value); -#ifdef YAJL_MAJOR < 2 +#if YAJL_MAJOR < 2 typedef unsigned int yajl_size; #else /* YAJL_MAJOR */ typedef size_t yajl_size;