2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-31 06:15:47 +00:00

treewide: Remove trailing whitespace

Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Simon Horman <horms@verge.net.au>
Signed-off-by: Jesse Gross <jesse@nicira.com>
This commit is contained in:
Joe Perches
2010-08-30 00:24:53 -07:00
committed by Jesse Gross
parent 90a249dc93
commit d295e8e97a
70 changed files with 396 additions and 396 deletions

View File

@@ -98,7 +98,7 @@ get_max_fds(void)
* address, into a numeric IP address in '*addr'. Returns 0 if successful,
* otherwise a positive errno value. */
int
lookup_ip(const char *host_name, struct in_addr *addr)
lookup_ip(const char *host_name, struct in_addr *addr)
{
if (!inet_aton(host_name, addr)) {
struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
@@ -111,7 +111,7 @@ lookup_ip(const char *host_name, struct in_addr *addr)
/* Returns the error condition associated with socket 'fd' and resets the
* socket's error status. */
int
get_socket_error(int fd)
get_socket_error(int fd)
{
int error;
socklen_t len = sizeof(error);
@@ -124,7 +124,7 @@ get_socket_error(int fd)
}
int
check_connection_completion(int fd)
check_connection_completion(int fd)
{
struct pollfd pfd;
int retval;