From c137b54835938f6d7f38bbdc4a179e65dba007a4 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 2 Mar 1998 13:41:39 +0000 Subject: [PATCH] (TEST): Fix paren nesting. --- wctype/test_wctype.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wctype/test_wctype.c b/wctype/test_wctype.c index df8f7e224a3..aeffee01929 100644 --- a/wctype/test_wctype.c +++ b/wctype/test_wctype.c @@ -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); \ -- 2.47.2