diff options
author | Roger Dingledine <arma@torproject.org> | 2003-09-27 07:33:07 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2003-09-27 07:33:07 +0000 |
commit | 0f25887048ee589a7e3f83e7faaf72f7d86f97e2 (patch) | |
tree | 4815c82a4e5f6922e7c11aedbbd47578a89f3da1 /src/or/buffers.c | |
parent | deac70439953008450fd1c17cad12c2a78a7c04b (diff) | |
download | tor-0f25887048ee589a7e3f83e7faaf72f7d86f97e2.tar.gz tor-0f25887048ee589a7e3f83e7faaf72f7d86f97e2.zip |
clean up connection_assert_ok compiler warnings
svn:r498
Diffstat (limited to 'src/or/buffers.c')
-rw-r--r-- | src/or/buffers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/buffers.c b/src/or/buffers.c index eba73a233d..e23270e85e 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); |