Skip to content

Commit

Permalink
Clean up formatting: remove trailing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
nmathewson committed Feb 18, 2010
1 parent e5bbd40 commit e5cf987
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions WIN32-Code/tree.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ struct { \
SPLAY_RIGHT(tmp, field) = (head)->sph_root; \
(head)->sph_root = tmp; \
} while (0)

#define SPLAY_ROTATE_LEFT(head, tmp, field) do { \
SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(tmp, field); \
SPLAY_LEFT(tmp, field) = (head)->sph_root; \
Expand Down Expand Up @@ -760,7 +760,7 @@ struct { \
SPLAY_RIGHT(tmp, field) = (head)->sph_root; \
(head)->sph_root = tmp; \
} while (0)

#define SPLAY_ROTATE_LEFT(head, tmp, field) do { \
SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(tmp, field); \
SPLAY_LEFT(tmp, field) = (head)->sph_root; \
Expand Down
2 changes: 1 addition & 1 deletion bufferevent_async.c
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ be_async_outbuf_callback(struct evbuffer *buf,
struct bufferevent *bev = arg;
struct bufferevent_async *bev_async = upcast(bev);

/* If we added data to the outbuf and were not writing before,
/* If we added data to the outbuf and were not writing before,
* we may want to write now. */

_bufferevent_incref_and_lock(bev);
Expand Down
10 changes: 5 additions & 5 deletions compat/sys/queue.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#define _SYS_QUEUE_H_

/*
* This file defines five types of data structures: singly-linked lists,
* This file defines five types of data structures: singly-linked lists,
* lists, simple queues, tail queues, and circular queues.
*
*
Expand Down Expand Up @@ -89,7 +89,7 @@
struct name { \
struct type *slh_first; /* first element */ \
}

#define SLIST_HEAD_INITIALIZER(head) \
{ NULL }

Expand Down Expand Up @@ -287,8 +287,8 @@ struct { \
struct type **tqe_prev; /* address of previous next element */ \
}

/*
* tail queue access methods
/*
* tail queue access methods
*/
#define TAILQ_FIRST(head) ((head)->tqh_first)
#define TAILQ_END(head) NULL
Expand Down Expand Up @@ -391,7 +391,7 @@ struct { \
}

/*
* Circular queue access methods
* Circular queue access methods
*/
#define CIRCLEQ_FIRST(head) ((head)->cqh_first)
#define CIRCLEQ_LAST(head) ((head)->cqh_last)
Expand Down
2 changes: 1 addition & 1 deletion event.c
Original file line number Diff line number Diff line change
Expand Up @@ -878,7 +878,7 @@ event_base_priority_init(struct event_base *base, int npriorities)
return (-1);
}
base->nactivequeues = npriorities;

for (i = 0; i < base->nactivequeues; ++i) {
TAILQ_INIT(&base->activequeues[i]);
}
Expand Down
2 changes: 1 addition & 1 deletion http.c
Original file line number Diff line number Diff line change
Expand Up @@ -1434,7 +1434,7 @@ evhttp_add_header(struct evkeyvalq *headers,
event_debug(("%s: dropping illegal header key\n", __func__));
return (-1);
}

if (!evhttp_header_is_valid_value(value)) {
event_debug(("%s: dropping illegal header value\n", __func__));
return (-1);
Expand Down
2 changes: 1 addition & 1 deletion include/event2/util.h
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ int evutil_make_listen_socket_reuseable(evutil_socket_t sock);

/** Do platform-specific operations as needed to close a socket upon a
successful execution of one of the exec*() functions.
@param sock The socket to be closed
@return 0 on success, -1 on failure
*/
Expand Down
4 changes: 2 additions & 2 deletions iocp-internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ void _evbuffer_overlapped_set_fd(struct evbuffer *buf, evutil_socket_t fd);
An evbuffer can only have one read pending at a time. While the read
is in progress, no other data may be added to the end of the buffer.
The buffer must be created with event_overlapped_init().
evbuffer_commit_read() must be called in the completion callback.
evbuffer_commit_read() must be called in the completion callback.
@param buf The buffer to read onto
@param n The number of bytes to try to read.
Expand All @@ -138,7 +138,7 @@ int evbuffer_launch_read(struct evbuffer *buf, size_t n, struct event_overlapped
An evbuffer can only have one write pending at a time. While the write is
in progress, no other data may be removed from the front of the buffer.
The buffer must be created with event_overlapped_init().
evbuffer_commit_write() must be called in the completion callback.
evbuffer_commit_write() must be called in the completion callback.
@param buf The buffer to read onto
@param n The number of bytes to try to read.
Expand Down
2 changes: 1 addition & 1 deletion listener.c
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ evconnlistener_new_bind(struct event_base *base, evconnlistener_cb cb,
listener = evconnlistener_new(base, cb, ptr, flags, backlog, fd);
if (!listener) {
EVUTIL_CLOSESOCKET(fd);
return NULL;
return NULL;
}

return listener;
Expand Down

0 comments on commit e5cf987

Please sign in to comment.