changeset 8437:166e8d07e046

Fix compilation error introduced in last commit.
author Bruno Haible <bruno@clisp.org>
date Fri, 16 Mar 2007 00:01:29 +0000
parents 36bbb949160c
children 238942284e2f
files ChangeLog tests/test-stdbool.c
diffstat 2 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -20,6 +20,10 @@
 	* tests/test-rbtree_oset.c (main): Update.
 	* lib/gl_anytreehash_list1.h (add_to_bucket): Update.
 
+2007-03-13  Bruno Haible  <bruno@clisp.org>
+
+	* tests/test-stdbool.c (i): Update after last patch.
+
 2007-03-12  Bruno Haible  <bruno@clisp.org>
 
 	* lib/quotearg.c: Include <wctype.h> early, before the definition of
--- a/tests/test-stdbool.c
+++ b/tests/test-stdbool.c
@@ -54,7 +54,9 @@
 char f[(_Bool) 0.0 == false ? 1 : -1];
 char g[true];
 char h[sizeof (_Bool)];
+#if 0 /* See above.  */
 char i[sizeof s.t];
+#endif
 enum { j = false, k = true, l = false * true, m = true * 256 };
 _Bool n[m];
 char o[sizeof n == m * sizeof n[0] ? 1 : -1];