CodingStyle: Fix indentation.
authorBen Pfaff <blp@nicira.com>
Fri, 16 Nov 2012 19:19:17 +0000 (11:19 -0800)
committerBen Pfaff <blp@nicira.com>
Sat, 17 Nov 2012 00:08:15 +0000 (16:08 -0800)
This got changed away from what I actually prefer in commit be2c418b73fc
(Cleanup isdigit() warnings.).

Signed-off-by: Ben Pfaff <blp@nicira.com>
CodingStyle

index b0aeb4e..ee7a0e6 100644 (file)
@@ -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);
     }