Style fixes - 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 ac0823da565aca2e2dd0ee2ca8b876c3b1268448
 (DIR) parent 9a790f78b6623fd5340369f71e8649cefbe2d4ec
 (HTM) Author: sin <sin@2f30.org>
       Date:   Sun, 17 Feb 2019 00:44:28 +0000
       
       Style fixes
       
       Diffstat:
         M dedup.c                             |      16 ++++++++--------
       
       1 file changed, 8 insertions(+), 8 deletions(-)
       ---
 (DIR) 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))))