From 814d96015643834fadd0980254ad0b7ece8266be Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Fri, 16 Mar 2007 00:01:29 +0000 Subject: [PATCH] Fix compilation error introduced in last commit. --- ChangeLog | 4 ++++ tests/test-stdbool.c | 2 ++ 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 19af785e9e..61e31fa1c3 100644 --- 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 + + * tests/test-stdbool.c (i): Update after last patch. + 2007-03-12 Bruno Haible * lib/quotearg.c: Include early, before the definition of diff --git a/tests/test-stdbool.c b/tests/test-stdbool.c index 0314be34d1..28e9b22bed 100644 --- a/tests/test-stdbool.c +++ b/tests/test-stdbool.c @@ -54,7 +54,9 @@ bool e = &s; 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]; -- 2.30.2