tAdd missing braces - 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 07c582217aa242d97771e96520280479a4a6955c
 (DIR) parent 1d030e78b7b8bcdbf805fc9080733e35e514b3af
 (HTM) Author: sin <sin@2f30.org>
       Date:   Thu, 18 Apr 2019 11:39:11 +0100
       
       Add missing braces
       
       Diffstat:
         M dinfo.c                             |       3 ++-
       
       1 file changed, 2 insertions(+), 1 deletion(-)
       ---
 (DIR) diff --git a/dinfo.c b/dinfo.c
       t@@ -29,11 +29,12 @@ print_info(int tflag)
        {
                struct stats *st = &snap_hdr.st;
        
       -        if (verbose > 0)
       +        if (verbose > 0) {
                        fprintf(stderr, "Compression algorithm: %s\n",
                                compr_type2name(compr_algo));
                        fprintf(stderr, "Hash algorithm: %s\n",
                                hash_type2name(hash_algo));
       +        }
        
                if (st->nr_blks == 0)
                        return;