diff options
author | Joseph Myers <joseph@codesourcery.com> | 2014-12-02 22:33:57 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2014-12-02 22:33:57 +0000 |
commit | 4e0b901601038c863b97e68b18ae50a82e10a157 (patch) | |
tree | 09fb81d7961a889873ca4e76b07c20eddffd13ae /nptl/tst-mutexpi1.c | |
parent | b1aff6a41120c1d9cedc1ecedeafc79f161ce982 (diff) | |
download | glibc-4e0b901601038c863b97e68b18ae50a82e10a157.zip glibc-4e0b901601038c863b97e68b18ae50a82e10a157.tar.gz glibc-4e0b901601038c863b97e68b18ae50a82e10a157.tar.bz2 |
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-mutexpi1.c')
-rw-r--r-- | nptl/tst-mutexpi1.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nptl/tst-mutexpi1.c b/nptl/tst-mutexpi1.c index 623ede9..d768664 100644 --- a/nptl/tst-mutexpi1.c +++ b/nptl/tst-mutexpi1.c @@ -24,4 +24,5 @@ prepare (void) #define ATTR &a +#define ATTR_NULL false #include "tst-mutex1.c" |