From: Ben Pfaff Date: Fri, 16 Nov 2012 19:19:17 +0000 (-0800) Subject: CodingStyle: Fix indentation. X-Git-Tag: sliver-openvswitch-1.9.90-3~10^2~174 X-Git-Url: http://git.onelab.eu/?p=sliver-openvswitch.git;a=commitdiff_plain;h=568e23fc2772235204dcabb61e1425b312070da2 CodingStyle: Fix indentation. This got changed away from what I actually prefer in commit be2c418b73fc (Cleanup isdigit() warnings.). Signed-off-by: Ben Pfaff --- diff --git a/CodingStyle b/CodingStyle index b0aeb4e61..ee7a0e6d4 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); }