aboutsummaryrefslogtreecommitdiff
path: root/src/or/buffers.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2003-09-27 07:33:07 +0000
committerRoger Dingledine <arma@torproject.org>2003-09-27 07:33:07 +0000
commit0f25887048ee589a7e3f83e7faaf72f7d86f97e2 (patch)
tree4815c82a4e5f6922e7c11aedbbd47578a89f3da1 /src/or/buffers.c
parentdeac70439953008450fd1c17cad12c2a78a7c04b (diff)
downloadtor-0f25887048ee589a7e3f83e7faaf72f7d86f97e2.tar
tor-0f25887048ee589a7e3f83e7faaf72f7d86f97e2.tar.gz
clean up connection_assert_ok compiler warnings
svn:r498
Diffstat (limited to 'src/or/buffers.c')
-rw-r--r--src/or/buffers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/buffers.c b/src/or/buffers.c
index eba73a233..e23270e85 100644
--- a/src/or/buffers.c
+++ b/src/or/buffers.c
@@ -44,7 +44,7 @@ int find_on_inbuf(char *string, int string_len, buf_t *buf) {
/* Create and return a new buf of size 'size'
*/
-static buf_t *buf_new_with_capacity(size_t size) {
+buf_t *buf_new_with_capacity(size_t size) {
buf_t *buf;
buf = (buf_t*)tor_malloc(sizeof(buf_t));
buf->buf = (char *)tor_malloc(size);