fsck: use %zu for size_t

cur and max were changed to size_t in ac6e2f0dfc
update the format accordingly.
This commit is contained in:
Thomas Hindoe Paaboel Andersen 2015-03-18 22:36:16 +01:00
parent defa8e675b
commit 1bc48c0471

View file

@ -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 */