From 553d7840d5d5ada906da8328fc84bc8b40c6d8b1 Mon Sep 17 00:00:00 2001 From: Dan Nicholson Date: Tue, 17 Mar 2015 12:20:53 -0700 Subject: [PATCH] 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 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ostree/ot-builtin-fsck.c b/src/ostree/ot-builtin-fsck.c index 333614cd..ae1dcce4 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++; }