about summary refs log tree commit diff
path: root/nptl/tst-mutexpp1.c
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2014-12-02 22:33:57 +0000
committerJoseph Myers <joseph@codesourcery.com>2014-12-02 22:33:57 +0000
commit4e0b901601038c863b97e68b18ae50a82e10a157 (patch)
tree09fb81d7961a889873ca4e76b07c20eddffd13ae /nptl/tst-mutexpp1.c
parentb1aff6a41120c1d9cedc1ecedeafc79f161ce982 (diff)
downloadglibc-4e0b901601038c863b97e68b18ae50a82e10a157.tar.gz
glibc-4e0b901601038c863b97e68b18ae50a82e10a157.tar.xz
glibc-4e0b901601038c863b97e68b18ae50a82e10a157.zip
Fix -Waddress warnings in nptl/tst-mutex1.c.
This patch fixes -Waddress warnings in nptl/tst-mutex1.c from
comparing the address of an object with NULL (ATTR may either be NULL,
or the address of an object when included from other tests, and the
warning arises in the latter case).  A macro ATTR_NULL is defined
alongside ATTR and used for the tests.

Tested for x86_64.

	* nptl/tst-mutex1.c: Include <stdbool.h>.
	[!ATTR] (ATTR_NULL): New macro.
	(do_test): Test !ATTR_NULL instead of ATTR != NULL.
	* nptl/tst-mutexpi1.c (ATTR_NULL): New macro.
	* nptl/tst-mutexpp1.c (ATTR_NULL): New macro.
Diffstat (limited to 'nptl/tst-mutexpp1.c')
-rw-r--r--nptl/tst-mutexpp1.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/nptl/tst-mutexpp1.c b/nptl/tst-mutexpp1.c
index 9b7d7fe263..8ec4673f1a 100644
--- a/nptl/tst-mutexpp1.c
+++ b/nptl/tst-mutexpp1.c
@@ -42,4 +42,5 @@ do_test_wrapper (void)
 #define TEST_FUNCTION do_test_wrapper ()
 
 #define ATTR &a
+#define ATTR_NULL false
 #include "tst-mutex1.c"