tStyle fix - dedup - deduplicating backup program
 (HTM) git clone git://git.z3bra.org/dedup.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 7799abf81e7cd7d4a08bcc9d16d7f346a9a5966a
 (DIR) parent 29cc8a15e33765d7d60fee42c4641c7988ab8c21
 (HTM) Author: sin <sin@2f30.org>
       Date:   Sun,  7 Apr 2019 14:12:19 +0100
       
       Style fix
       
       Diffstat:
         M compress.c                          |      14 +++-----------
         M hash.c                              |      14 +++-----------
       
       2 files changed, 6 insertions(+), 22 deletions(-)
       ---
 (DIR) diff --git a/compress.c b/compress.c
       t@@ -55,17 +55,9 @@ static struct algomap {
                char *name;
                int type;
        } algomap[] = {
       -        {
       -                .name = "none",
       -                .type = COMPR_NONE,
       -        },
       -        {
       -                .name = "lz4",
       -                .type = COMPR_LZ4,
       -        },
       -        {
       -                .name = NULL,
       -        },
       +        { .name = "none", .type = COMPR_NONE },
       +        { .name = "lz4", .type = COMPR_LZ4 },
       +        { .name = NULL, },
        };
        
        static int
 (DIR) diff --git a/hash.c b/hash.c
       t@@ -35,17 +35,9 @@ static struct algomap {
                char *name;
                int type;
        } algomap[] = {
       -        {
       -                .name = "blake2b",
       -                .type = HASH_BLAKE2B,
       -        },
       -        {
       -                .name = "blake2bp",
       -                .type = HASH_BLAKE2BP,
       -        },
       -        {
       -                .name = NULL,
       -        },
       +        { .name = "blake2b", .type = HASH_BLAKE2B },
       +        { .name = "blake2bp", .type = HASH_BLAKE2BP },
       +        { .name = NULL },
        };
        
        static int