From 7c389ce8a098fa02c93890205d715ecef6024c3e Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Wed, 18 Jun 2008 10:12:14 +0200 Subject: [PATCH] collect: fix size_t printf --- extras/collect/collect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/collect/collect.c b/extras/collect/collect.c index 9fb6737d9..ce49b9f41 100644 --- a/extras/collect/collect.c +++ b/extras/collect/collect.c @@ -147,7 +147,7 @@ static int checkout(int fd) if (!ptr && word < (buf + len)) { bufsize = bufsize << 1; if (debug) - fprintf(stderr, "ID overflow, restarting with size %d\n", bufsize); + fprintf(stderr, "ID overflow, restarting with size %zi\n", bufsize); free(buf); lseek(fd, 0, SEEK_SET); goto restart; -- 2.30.2