1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-12 13:18:14 +03:00

collect: fix size_t printf

This commit is contained in:
Kay Sievers 2008-06-18 10:12:14 +02:00
parent 322fc7a636
commit 7c389ce8a0

View File

@ -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;