From 568e23fc2772235204dcabb61e1425b312070da2 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Fri, 16 Nov 2012 11:19:17 -0800 Subject: [PATCH] CodingStyle: Fix indentation. This got changed away from what I actually prefer in commit be2c418b73fc (Cleanup isdigit() warnings.). Signed-off-by: Ben Pfaff --- CodingStyle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CodingStyle b/CodingStyle index b0aeb4e6..ee7a0e6d 100644 --- a/CodingStyle +++ b/CodingStyle @@ -432,8 +432,8 @@ precedence makes it necessary, or unless the operands are themselves expressions that use && and ||. Thus: if (!isdigit((unsigned char)s[0]) - || !isdigit((unsigned char)s[1]) - || !isdigit((unsigned char)s[2])) { + || !isdigit((unsigned char)s[1]) + || !isdigit((unsigned char)s[2])) { printf("string %s does not start with 3-digit code\n", s); } -- 2.30.2