From: Automatic source maintenance Date: Mon, 26 Aug 2013 00:12:21 +0000 (-0600) Subject: SourceFormat Enforcement X-Git-Tag: SQUID_3_5_0_1~656 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0e0c6829b1ca5b076fff1519a5204a90077bbddd;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/compat/GnuRegex.c b/compat/GnuRegex.c index 8cf58180d2..0dac6063a7 100644 --- a/compat/GnuRegex.c +++ b/compat/GnuRegex.c @@ -2727,7 +2727,8 @@ static boolean group_match_null_string_p(unsigned char **p, unsigned char *end, /* Test if at very beginning or at very end of the virtual concatenation * of `string1' and `string2'. If only one string, it's `string2'. */ #define AT_STRINGS_BEG(d) ((d) == (size1 ? string1 : string2) || !size2) -static int at_strings_end(const char *d, const char *end2) { +static int at_strings_end(const char *d, const char *end2) +{ return d == end2; } @@ -2743,8 +2744,8 @@ static int wordchar_p(const char *d, const char *end1, const char *string2) { return re_syntax_table[(d) == end1 ? *string2 - : (d) == string2 - 1 ? *(end1 - 1) : *(d)] - == Sword; + : (d) == string2 - 1 ? *(end1 - 1) : *(d)] + == Sword; } /* Test if the character before D and the one at D differ with respect