summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Lebon <jonathan@jlebon.com>2021-09-30 16:33:47 -0400
committerGitHub <noreply@github.com>2021-09-30 16:33:47 -0400
commit841902c40db85c6efe809234e9d47accd30581b6 (patch)
tree6c0060ac59ad41afca367c480d644f533fa48269
parentd61a4991636edff9ad9e02fb3f9aec7e582b7dcf (diff)
parent1ed290c7d93e24fd3986dd3c355b0d323dcdcd99 (diff)
downloadostree-841902c40db85c6efe809234e9d47accd30581b6.tar.gz
Merge pull request #2451 from cgwalters/fsck-happy
-rw-r--r--src/ostree/ot-builtin-fsck.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ostree/ot-builtin-fsck.c b/src/ostree/ot-builtin-fsck.c
index dea03af4..f7a72601 100644
--- a/src/ostree/ot-builtin-fsck.c
+++ b/src/ostree/ot-builtin-fsck.c
@@ -459,5 +459,8 @@ ostree_builtin_fsck (int argc, char **argv, OstreeCommandInvocation *invocation,
if (n_fsck_partial > 0)
return glnx_throw (error, "%u partial commits from fsck-detected corruption", n_partial);
+ g_print ("object fsck of %d commits completed successfully - no errors found.\n",
+ (guint)g_hash_table_size (commits));
+
return TRUE;
}