[ostree] fsck: Fix object count output



commit 553d7840d5d5ada906da8328fc84bc8b40c6d8b1
Author: Dan Nicholson <nicholson endlessm com>
Date:   Tue Mar 17 12:20:53 2015 -0700

    fsck: Fix object count output
    
    The object count comes from g_hash_table_size(), so it's not a 0 based
    index. In order to maintain the mod calculations correctly, just print
    out index + 1.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=746360

 src/ostree/ot-builtin-fsck.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/ostree/ot-builtin-fsck.c b/src/ostree/ot-builtin-fsck.c
index 333614c..ae1dcce 100644
--- a/src/ostree/ot-builtin-fsck.c
+++ b/src/ostree/ot-builtin-fsck.c
@@ -224,7 +224,7 @@ fsck_reachable_objects_from_commits (OstreeRepo            *repo,
         goto out;
 
       if (mod == 0 || (i % mod == 0))
-        g_print ("%u/%u objects\n", i, count);
+        g_print ("%u/%u objects\n", i + 1, count);
       i++;
     }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]