summaryrefslogtreecommitdiff
path: root/tests/test-stdbool.c
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2007-03-16 00:01:29 +0000
committerBruno Haible <bruno@clisp.org>2007-03-16 00:01:29 +0000
commit814d96015643834fadd0980254ad0b7ece8266be (patch)
treebfcad35ac6eb9e8799f57d51df5ee09038d8c4b6 /tests/test-stdbool.c
parent99f430a8044e80894705b9a158e56258e41d7993 (diff)
downloadgnulib-814d96015643834fadd0980254ad0b7ece8266be.tar.gz
Fix compilation error introduced in last commit.
Diffstat (limited to 'tests/test-stdbool.c')
-rw-r--r--tests/test-stdbool.c2
1 files changed, 2 insertions, 0 deletions
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];