commit 58d3303c15c12898c7653fdb1d0a7b902067056e
parent 874e674f9ffc61d83ff6e756d9749d4ae9d1129b
Author: sin <sin@2f30.org>
Date: Wed, 10 Apr 2019 13:54:52 +0100
Fix typo
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
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