(TEST): Fix paren nesting.

This commit is contained in:
Ulrich Drepper 1998-03-02 13:41:39 +00:00
parent d916e8b37d
commit c137b54835

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1996, 1997 Free Software Foundation, Inc.
/* Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -49,7 +49,7 @@ main (int argc, char *argv[])
#define TEST(test) \
do \
{ \
if ((is##test (ch) == 0) != (iswctype (ch, bit_##test)) == 0) \
if ((is##test (ch) == 0) != (iswctype (ch, bit_##test) == 0)) \
{ \
printf ("class `%s' test for character \\%o failed\n", \
#test, ch); \