URI: 
       Fix format string - dedup - deduplicating backup program
  HTML git clone git://bitreich.org/dedup/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/dedup/
   DIR Log
   DIR Files
   DIR Refs
   DIR Tags
   DIR README
   DIR LICENSE
       ---
   DIR commit e9c0d478cc17e6553c104b1db2b2e6c55c369938
   DIR parent b32ea21f3ef521f3f1dd9d908e499df4c83b895a
  HTML Author: sin <sin@2f30.org>
       Date:   Wed, 21 Mar 2018 17:59:57 +0000
       
       Fix format string
       
       Diffstat:
         M dedup.c                             |      10 +++++-----
       
       1 file changed, 5 insertions(+), 5 deletions(-)
       ---
   DIR diff --git a/dedup.c b/dedup.c
       @@ -77,15 +77,15 @@ dump_ent(struct ent *ent)
        {
                uint64_t i;
        
       -        fprintf(stderr, "ent->sz: %lld\n", (unsigned long long)ent->sz);
       +        fprintf(stderr, "ent->sz: %llu\n", (unsigned long long)ent->sz);
                fprintf(stderr, "ent->md: ");
                dump_md(ent->md, sizeof(ent->md));
                fputc('\n', stderr);
                if (verbose) {
       -                fprintf(stderr, "ent->nblks: %lld\n",
       +                fprintf(stderr, "ent->nblks: %llu\n",
                                (unsigned long long)ent->nblks);
                        for (i = 0; i < ent->nblks; i++)
       -                        fprintf(stderr, "ent->blks[%lld]: %lld\n",
       +                        fprintf(stderr, "ent->blks[%llu]: %llu\n",
                                       (unsigned long long)i,
                                       (unsigned long long)ent->blks[i]);
                }
       @@ -97,7 +97,7 @@ dump_blk(struct blk *blk)
                fprintf(stderr, "blk->md: ");
                dump_md(blk->md, sizeof(blk->md));
                putchar('\n');
       -        fprintf(stderr, "blk->sz: %lld\n", (unsigned long long)blk->sz);
       +        fprintf(stderr, "blk->sz: %llu\n", (unsigned long long)blk->sz);
        }
        
        void
       @@ -438,7 +438,7 @@ list(void)
                        for (i = 0; i < sizeof(ent.md); i++)
                                printf("%02x", ent.md[i]);
                        if (verbose)
       -                        printf(" %lld", ent.nblks * BLKSIZ);
       +                        printf(" %llu", ent.nblks * BLKSIZ);
                        putchar('\n');
                        lseek(ifd, ent.nblks * sizeof(ent.blks[0]), SEEK_CUR);
                }