summaryrefslogtreecommitdiff
path: root/tests/test-stdio.c
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2009-08-11 21:06:43 +0200
committerBruno Haible <bruno@clisp.org>2009-08-11 21:06:43 +0200
commitb8521e81e705f88784e7a6709bcd6c5a3ea440e0 (patch)
tree91d54b0f17fa51ccfec21fa54f797bcfb4e425db /tests/test-stdio.c
parenta49cfc24f04352a3de3e9f40646f3686d493b758 (diff)
downloadgnulib-b8521e81e705f88784e7a6709bcd6c5a3ea440e0.tar.gz
Avoid compilation error on NetBSD 5.0.
Diffstat (limited to 'tests/test-stdio.c')
-rw-r--r--tests/test-stdio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-stdio.c b/tests/test-stdio.c
index dcfe38dd51..41299e2159 100644
--- a/tests/test-stdio.c
+++ b/tests/test-stdio.c
@@ -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 ()