803fb7
From a4409b8ae6b80acffc9a4f89df2d06c498b8c8f9 Mon Sep 17 00:00:00 2001
803fb7
From: Daniel Mack <daniel@zonque.org>
803fb7
Date: Tue, 24 Feb 2015 16:24:14 +0100
803fb7
Subject: [PATCH] test-hashmap: fix gcc5 warning
803fb7
MIME-Version: 1.0
803fb7
Content-Type: text/plain; charset=UTF-8
803fb7
Content-Transfer-Encoding: 8bit
803fb7
803fb7
gcc5 spits out a warning about test-hashmap.c:
803fb7
803fb7
  CC       src/test/test-hashmap.o
803fb7
src/test/test-hashmap.c: In function ‘test_string_compare_func’:
803fb7
src/test/test-hashmap.c:76:79: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses]
803fb7
803fb7
(cherry picked from commit 4b3eff61640672bf0b19cb8cdd88ce5e84dcda1c)
803fb7
---
803fb7
 src/test/test-hashmap.c | 2 +-
803fb7
 1 file changed, 1 insertion(+), 1 deletion(-)
803fb7
803fb7
diff --git a/src/test/test-hashmap.c b/src/test/test-hashmap.c
803fb7
index 6900da9e8..351563b96 100644
803fb7
--- a/src/test/test-hashmap.c
803fb7
+++ b/src/test/test-hashmap.c
803fb7
@@ -75,7 +75,7 @@ static void test_trivial_compare_func(void) {
803fb7
 }
803fb7
 
803fb7
 static void test_string_compare_func(void) {
803fb7
-        assert_se(!string_compare_func("fred", "wilma") == 0);
803fb7
+        assert_se(string_compare_func("fred", "wilma") != 0);
803fb7
         assert_se(string_compare_func("fred", "fred") == 0);
803fb7
 }
803fb7