diff options
author | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2014-12-10 20:24:18 +0100 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2014-12-17 14:28:47 -0500 |
commit | fdb139feedcc7f2930f561a7e643d144e13f9d5e (patch) | |
tree | dcf817b6a114542525fbeace7f8aeaee86660e47 /src/collect | |
parent | c01838a8db63fba188dbc3bdf17e6697f41c3918 (diff) |
use correct format types
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/collect')
-rw-r--r-- | src/collect/collect.c | 2 |
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; |