diff options
author | Alexander von Gernler <grunk@cvs.openbsd.org> | 2005-07-02 07:15:14 +0000 |
---|---|---|
committer | Alexander von Gernler <grunk@cvs.openbsd.org> | 2005-07-02 07:15:14 +0000 |
commit | 2b8c1586f28b1c8edfad4ce0c23ae891a174b208 (patch) | |
tree | e04ec0a58dca12be5d4b8daec343bd4d40d5c2e3 /lib/libevent/buffer.c | |
parent | b2ef76cc19eb3be670c62f26e8e78c3efcf5f5f0 (diff) |
zap trailing whitespaces, no binary change
ok brad@ beck@
Diffstat (limited to 'lib/libevent/buffer.c')
-rw-r--r-- | lib/libevent/buffer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libevent/buffer.c b/lib/libevent/buffer.c index 379415a7f33..de04f0bf079 100644 --- a/lib/libevent/buffer.c +++ b/lib/libevent/buffer.c @@ -1,4 +1,4 @@ -/* $OpenBSD: buffer.c,v 1.6 2005/06/18 01:52:22 brad Exp $ */ +/* $OpenBSD: buffer.c,v 1.7 2005/07/02 07:15:13 grunk Exp $ */ /* * Copyright (c) 2002, 2003 Niels Provos <provos@citi.umich.edu> @@ -77,7 +77,7 @@ evbuffer_free(struct evbuffer *buffer) free(buffer); } -/* +/* * This is a destructive add. The data from one buffer moves into * the other buffer. */ @@ -105,7 +105,7 @@ evbuffer_add_buffer(struct evbuffer *outbuf, struct evbuffer *inbuf) SWAP(outbuf, inbuf); SWAP(inbuf, &tmp); - /* + /* * Optimization comes with a price; we need to notify the * buffer if necessary of the changes. oldoff is the amount * of data that we tranfered from inbuf to outbuf |