Browse Source

fix a printf size_t/int mismatch from r10150

svn:r10152
Roger Dingledine 17 years ago
parent
commit
8e8144cd58
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/or/buffers.c

+ 1 - 1
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;