aboutsummaryrefslogtreecommitdiff
path: root/src/or/buffers.c
diff options
context:
space:
mode:
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 8750ba5bd1..6c88c3923f 100644
--- a/src/or/buffers.c
+++ b/src/or/buffers.c
@@ -262,7 +262,7 @@ buf_shrink_freelists(void)
int i;
log_info(LD_GENERAL, "We haven't used %d/%d allocated %d-byte buffer "
"memory chunks since the last call; freeing all but %d of them",
- list->lowwater, list->len, list->chunksize, list->slack);
+ list->lowwater, list->len, (int)list->chunksize, list->slack);
for (i = list->slack; i < list->lowwater; ++i) {
/* XXXX we should really free the last few entries, not the first. */
char *mem = list->list;