aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
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 /ChangeLog
parentb1aff6a41120c1d9cedc1ecedeafc79f161ce982 (diff)
downloadglibc-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 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index c6ee845..51df3b5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2014-12-02 Joseph Myers <joseph@codesourcery.com>
+ * 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.
+
* posix/tst-getopt_long1.c (do_test): Cast elements of argv array
to char *.