diff options
Diffstat (limited to 'test/regression/bool.c')
-rw-r--r-- | test/regression/bool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/regression/bool.c b/test/regression/bool.c index d2b3857..4f8ed80 100644 --- a/test/regression/bool.c +++ b/test/regression/bool.c @@ -9,7 +9,7 @@ int main() _Bool a, b, c, d, e, f, g, h, i; a = x; b = x >= 100; - c = &x; + c = (_Bool) &x; d = a && b; e = a || b; f = a & b; |