X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=CodingStyle;h=ee7a0e6d4b656c28905cbe382a9618037426d929;hb=ea7655d9f9d38a3af7250de8ba0b89115b5f4a5e;hp=b0aeb4e61dcf7452b1d3faf4eb7875eb367b5803;hpb=c214278b0d0e9b574a1f505f14a47d3d8d81aea1;p=sliver-openvswitch.git 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); }