From e20413bf6b872a8c23f1704a89295c5897347c9d Mon Sep 17 00:00:00 2001 From: pierrejoye Date: Wed, 3 Apr 2013 14:23:11 +0200 Subject: - apply same CS everywhere --- cmake/modules/TestForHighBitCharacters.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'cmake') diff --git a/cmake/modules/TestForHighBitCharacters.c b/cmake/modules/TestForHighBitCharacters.c index 338cc5e..9d2bc0c 100644 --- a/cmake/modules/TestForHighBitCharacters.c +++ b/cmake/modules/TestForHighBitCharacters.c @@ -12,11 +12,11 @@ #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int - main () +main () { - int i; - for (i = 0; i < 256; i++) - if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) - exit(1); - exit (0); + int i; + for (i = 0; i < 256; i++) + if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) + exit(1); + exit (0); } -- cgit v1.2.1