summaryrefslogtreecommitdiff
path: root/src/collect/collect.c
diff options
context:
space:
mode:
authorThomas Hindoe Paaboel Andersen <phomes@gmail.com>2014-12-10 20:24:18 +0100
committerAnthony G. Basile <blueness@gentoo.org>2014-12-17 14:28:47 -0500
commitfdb139feedcc7f2930f561a7e643d144e13f9d5e (patch)
treedcf817b6a114542525fbeace7f8aeaee86660e47 /src/collect/collect.c
parentc01838a8db63fba188dbc3bdf17e6697f41c3918 (diff)
use correct format types
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/collect/collect.c')
-rw-r--r--src/collect/collect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/collect/collect.c b/src/collect/collect.c
index 2d1baa1ddc..538aa29db9 100644
--- a/src/collect/collect.c
+++ b/src/collect/collect.c
@@ -157,7 +157,7 @@ static int checkout(int fd)
if (!ptr && word < (buf + len)) {
bufsize = bufsize << 1;
if (debug)
- fprintf(stderr, "ID overflow, restarting with size %zi\n", bufsize);
+ fprintf(stderr, "ID overflow, restarting with size %zu\n", bufsize);
free(buf);
lseek(fd, 0, SEEK_SET);
goto restart;