From 27f77a4291fad358c4a88ce27fffb0c36a85e1a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Higor=20Eur=C3=ADpedes?= Date: Thu, 19 Nov 2015 10:05:08 -0300 Subject: [PATCH] (cheevos) Fix clang warning --- cheevos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cheevos.c b/cheevos.c index df8d5c6bda..266622996d 100644 --- a/cheevos.c +++ b/cheevos.c @@ -849,7 +849,7 @@ static int cheevos_parse(const char *json) ud.core_count = 0; ud.unofficial_count = 0; - if (!jsonsax_parse(json, &handlers, (void*)&ud) == JSONSAX_OK) + if (jsonsax_parse(json, &handlers, (void*)&ud) != JSONSAX_OK) { cheevos_unload(); return -1;