mirror of
https://github.com/systemd/systemd.git
synced 2025-03-22 06:50:18 +03:00
fsck: use %zu for size_t
cur and max were changed to size_t in ac6e2f0dfc2e800f01c79ecea2b811914110a7b9 update the format accordingly.
This commit is contained in:
parent
defa8e675b
commit
1bc48c0471
@ -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 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user