style cleanup: return(a) -> return a, part 2

This commit is contained in:
Denis Vlasenko
2006-11-27 16:49:55 +00:00
parent 079f8afa0a
commit d9e15f2068
28 changed files with 273 additions and 282 deletions

View File

@@ -543,6 +543,6 @@ static int in_ether(const char *bufp, struct sockaddr *sap)
*ptr++ = val;
} while (++i < ETH_ALEN);
return (int) (*bufp); /* Error if we don't end at end of string. */
return *bufp; /* Error if we don't end at end of string. */
}
#endif