[systemd-commits] src/fsck

Thomas H.P. Andersen phomes at kemper.freedesktop.org
Thu Mar 19 13:11:41 PDT 2015


 src/fsck/fsck.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1bc48c0471a82ad63f88976979ed16e7a2ddcf1f
Author: Thomas Hindoe Paaboel Andersen <phomes at gmail.com>
Date:   Wed Mar 18 22:36:16 2015 +0100

    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 6e46633..bd17948 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 */



More information about the systemd-commits mailing list