dedup

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

commit cd603e224d63d39634324c26410e7174a7b58069
parent c90df19c4abc00fea111be13b164216a33e5339d
Author: sin <sin@2f30.org>
Date:   Tue, 26 Mar 2019 16:20:24 +0000

Fix decl style

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

diff --git a/dedup.h b/dedup.h @@ -77,9 +77,8 @@ void add_cache_entry(struct cache *cache, struct blk_desc *desc); int lookup_cache_entry(struct cache *cache, struct blk_desc *desc); /* chunker.c */ -struct chunker * -alloc_chunker(int fd, size_t min_size, size_t max_size, - size_t mask, size_t win_size); +struct chunker *alloc_chunker(int fd, size_t min_size, size_t max_size, + size_t mask, size_t win_size); void free_chunker(struct chunker *chunker); ssize_t fill_chunker(struct chunker *chunker); uint8_t *get_chunk(struct chunker *chunker, size_t *chunk_size);