dedup

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

commit ac0823da565aca2e2dd0ee2ca8b876c3b1268448
parent 9a790f78b6623fd5340369f71e8649cefbe2d4ec
Author: sin <sin@2f30.org>
Date:   Sun, 17 Feb 2019 00:44:28 +0000

Style fixes

Diffstat:
Mdedup.c | 16++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/dedup.c b/dedup.c @@ -12,14 +12,14 @@ #include "arg.h" #include "tree.h" -#define INDEXF ".index" -#define STOREF ".store" -#define CACHEF ".cache" - -#define BLKSIZ (8*1024*1024) -#define WINSIZ 4096 -#define HASHMSK ((1ul << 21) - 1) -#define MDSIZ SHA256_DIGEST_LENGTH +#define INDEXF ".index" +#define STOREF ".store" +#define CACHEF ".cache" + +#define BLKSIZ (8*1024*1024) +#define WINSIZ 4096 +#define HASHMSK ((1ul << 21) - 1) +#define MDSIZ SHA256_DIGEST_LENGTH #define ROTL(x, y) (((x) << (y)) | ((x) >> (32 - (y))))