From 25a1b891562b0c23add076695ac5fe1d929a8de8 Mon Sep 17 00:00:00 2001 From: Owen Clarke Date: Thu, 23 Feb 2012 20:33:05 -0500 Subject: [PATCH] Bug #938 - Fixed incorrect return type. Signed-off-by: Paul Beckingham --- src/JSON.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/JSON.cpp b/src/JSON.cpp index 76f4df520..d67b90baf 100644 --- a/src/JSON.cpp +++ b/src/JSON.cpp @@ -328,7 +328,7 @@ bool json::object::parse_pair ( throw format (STRING_JSON_MISSING_COLON, (int) n.cursor ()); } - return NULL; + return false; } ////////////////////////////////////////////////////////////////////////////////