Style fix - 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 30d7490ad26a6cf6167b589810a4544199ed430c
 (DIR) parent dc8ddd5cc99cba6f6a7919ebd9bc92b52cffc1a6
 (HTM) Author: sin <sin@2f30.org>
       Date:   Sun, 10 Mar 2019 11:07:59 +0000
       
       Style fix
       
       Diffstat:
         M dedup.h                             |      10 +++++-----
       
       1 file changed, 5 insertions(+), 5 deletions(-)
       ---
 (DIR) diff --git a/dedup.h b/dedup.h
       @@ -7,12 +7,12 @@
         * the structs below will need to be reflected here and in types.c.
         */
        #define MSGSIZE        256
       -#define MDSIZE 32
       +#define MDSIZE        32
        
       -#define SNAP_HDR_SIZE 104
       -#define BLK_HDR_SIZE 16
       -#define BLK_DESC_SIZE (MDSIZE + 16)
       -#define SNAPSHOT_SIZE (8 + MSGSIZE + MDSIZE + 8)
       +#define SNAP_HDR_SIZE        104
       +#define BLK_HDR_SIZE        16
       +#define BLK_DESC_SIZE        (MDSIZE + 16)
       +#define SNAPSHOT_SIZE        (8 + MSGSIZE + MDSIZE + 8)
        
        /* file format version */
        #define VER_MIN        2