Avoid compilation error on NetBSD 5.0.
authorBruno Haible <bruno@clisp.org>
Tue, 11 Aug 2009 19:06:43 +0000 (21:06 +0200)
committerBruno Haible <bruno@clisp.org>
Tue, 11 Aug 2009 19:06:43 +0000 (21:06 +0200)
ChangeLog
tests/test-locale.c
tests/test-stdio.c
tests/test-stdlib.c
tests/test-string.c
tests/test-unistd.c

index bfd812eaaab6a3d6f869fc3b89ed2464aedb611c..4832c99e0f74674c795deebf0970ce0e9e22150d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2009-08-11  Bruno Haible  <bruno@clisp.org>
+
+       Avoid compilation error on NetBSD 5.0.
+       * tests/test-locale.c: Write sizeof (NULL) instead of sizeof NULL.
+       * tests/test-stdio.c: Likewise.
+       * tests/test-stdlib.c: Likewise.
+       * tests/test-string.c: Likewise.
+       * tests/test-unistd.c: Likewise.
+       Reported by Greg Troxel <gdt@ir.bbn.com>
+       at <https://savannah.gnu.org/support/?106973>.
+
 2009-08-11  Bruno Haible  <bruno@clisp.org>
 
        * modules/dup2-tests (Depends-on): Remove close.
index 625cc43d8446c3c6c1bd4bf0e4c57a4371417446..60a50a719d00f90e0b13a3a7c656a9573efb9103 100644 (file)
@@ -35,7 +35,7 @@ int a[] =
 
 /* Check that NULL can be passed through varargs as a pointer type,
    per POSIX 2008.  */
-verify (sizeof NULL == sizeof (void *));
+verify (sizeof (NULL) == sizeof (void *));
 
 int
 main ()
index dcfe38dd515cf365fc8c55fbf19ed17177fa23d5..41299e21598a8bc83763ddbb9c5fdf6493b74ea6 100644 (file)
@@ -27,7 +27,7 @@ int sk[] = { SEEK_CUR, SEEK_END, SEEK_SET };
 
 /* Check that NULL can be passed through varargs as a pointer type,
    per POSIX 2008.  */
-verify (sizeof NULL == sizeof (void *));
+verify (sizeof (NULL) == sizeof (void *));
 
 int
 main ()
index ae46ba16625479aeb9022489162bee441a57433b..711cfa631549b98cb0122362c06299ccd7745f8b 100644 (file)
@@ -26,7 +26,7 @@ int exitcode;
 
 /* Check that NULL can be passed through varargs as a pointer type,
    per POSIX 2008.  */
-verify (sizeof NULL == sizeof (void *));
+verify (sizeof (NULL) == sizeof (void *));
 
 int
 main ()
index fe53cd9b152a584e9559ff43b55a38106416dcad..688d0d31c3f6befe8c895bae713c141657629b40 100644 (file)
@@ -24,7 +24,7 @@
 
 /* Check that NULL can be passed through varargs as a pointer type,
    per POSIX 2008.  */
-verify (sizeof NULL == sizeof (void *));
+verify (sizeof (NULL) == sizeof (void *));
 
 int
 main ()
index 129367b4d7df989e1f31d1035e9ddc444d8a3169..e0b82918a95d5124ac3ca62697c0085ad60dfdf4 100644 (file)
@@ -24,7 +24,7 @@
 
 /* Check that NULL can be passed through varargs as a pointer type,
    per POSIX 2008.  */
-verify (sizeof NULL == sizeof (void *));
+verify (sizeof (NULL) == sizeof (void *));
 
 /* Check that the various SEEK_* macros are defined.  */
 int sk[] = { SEEK_CUR, SEEK_END, SEEK_SET };