Fix typo - dedup - deduplicating backup program
(HTM) git clone git://bitreich.org/dedup/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/dedup/
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Tags
(DIR) README
(DIR) LICENSE
---
(DIR) commit 58d3303c15c12898c7653fdb1d0a7b902067056e
(DIR) parent 874e674f9ffc61d83ff6e756d9749d4ae9d1129b
(HTM) Author: sin <sin@2f30.org>
Date: Wed, 10 Apr 2019 13:54:52 +0100
Fix typo
Diffstat:
M dedup.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
(DIR) diff --git a/dedup.c b/dedup.c
@@ -471,14 +471,14 @@ load_blk_hdr(void)
compr_algo = v;
if (compr_algo < 0 || compr_algo >= NR_COMPRS)
- errx(1, "unsupported compression algorithm :%d", compr_algo);
+ errx(1, "unsupported compression algorithm: %d", compr_algo);
v = blk_hdr.flags >> HASH_ALGO_SHIFT;
v &= HASH_ALGO_MASK;
hash_algo = v;
if (hash_algo < 0 || hash_algo >= NR_HASHES)
- errx(1, "unsupported hash algorithm :%d", hash_algo);
+ errx(1, "unsupported hash algorithm: %d", hash_algo);
}
static void