dedup

deduplicating backup program
git clone git://git.2f30.org/dedup
Log | Files | Refs | README | LICENSE

commit bbae2410b3c189917a266eb6fbca6781051e8951
parent 9eb852d729dd0e58a51d453beb76b3fb3d420084
Author: sin <sin@2f30.org>
Date:   Mon, 18 Feb 2019 19:30:37 +0000

Update stats print

Diffstat:
Mdedup.c | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/dedup.c b/dedup.c @@ -702,10 +702,9 @@ init(void) (unsigned long long)enthdr.st.comp_size); fprintf(stderr, "deduplicated size: %llu bytes\n", (unsigned long long)enthdr.st.dedup_size); - - fprintf(stderr, "cache hits: %llu\n", + fprintf(stderr, "total cache hits: %llu\n", (unsigned long long)enthdr.st.cache_hits); - fprintf(stderr, "cache misses: %llu\n", + fprintf(stderr, "total cache misses: %llu\n", (unsigned long long)enthdr.st.cache_misses); }