From: Thomas Hindoe Paaboel Andersen Date: Wed, 18 Mar 2015 21:36:16 +0000 (+0100) Subject: fsck: use %zu for size_t X-Git-Tag: v219.0~266 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=1bc48c0471a82ad63f88976979ed16e7a2ddcf1f fsck: use %zu for size_t cur and max were changed to size_t in ac6e2f0dfc2e800f01c79ecea2b811914110a7b9 update the format accordingly. --- diff --git a/src/fsck/fsck.c b/src/fsck/fsck.c index 6e4663302..bd17948a2 100644 --- a/src/fsck/fsck.c +++ b/src/fsck/fsck.c @@ -159,7 +159,7 @@ static int process_progress(int fd, pid_t fsck_pid, dev_t device_num) { FsckProgress progress; FsckdMessage fsckd_message; - if (fscanf(f, "%i %lu %lu %ms", &pass, &cur, &max, &device) != 4) + if (fscanf(f, "%i %zu %zu %ms", &pass, &cur, &max, &device) != 4) break; /* Only update once every 50ms */