Describe dummy test model. Work on OpenFlow intro.
[openvswitch] / CodingStyle
index b0aeb4e61dcf7452b1d3faf4eb7875eb367b5803..ee7a0e6d4b656c28905cbe382a9618037426d929 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);
     }