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