Skip to content

Commit

Permalink
net: the space is required before the open parenthesis '('
Browse files Browse the repository at this point in the history
The space is missing before the open parenthesis '(', and this
will introduce much more noise when checking patch around.

Signed-off-by: Wei Tang <tangwei@cmss.chinamobile.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Wei Tang authored and David S. Miller committed Jun 29, 2016
1 parent 5eca291 commit 8a01ed7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions net/core/utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ int in4_pton(const char *src, int srclen,
s = src;
d = dbuf;
i = 0;
while(1) {
while (1) {
int c;
c = xdigit2bin(srclen > 0 ? *s : '\0', delim);
if (!(c & (IN6PTON_DIGIT | IN6PTON_DOT | IN6PTON_DELIM | IN6PTON_COLON_MASK))) {
Expand Down Expand Up @@ -283,11 +283,11 @@ int in6_pton(const char *src, int srclen,
i = 15; d--;

if (dc) {
while(d >= dc)
while (d >= dc)
dst[i--] = *d--;
while(i >= dc - dbuf)
while (i >= dc - dbuf)
dst[i--] = 0;
while(i >= 0)
while (i >= 0)
dst[i--] = *d--;
} else
memcpy(dst, dbuf, sizeof(dbuf));
Expand Down

0 comments on commit 8a01ed7

Please sign in to comment.