From: Joel Rosdahl Date: Sat, 15 Aug 2015 12:38:33 +0000 (+0200) Subject: Use correct key for "file info indexes" in --dump-manifest output X-Git-Tag: v3.2.3~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f37d14e9a7ff548d608f61e22a1f6de111681a23;p=thirdparty%2Fccache.git Use correct key for "file info indexes" in --dump-manifest output --- diff --git a/manifest.c b/manifest.c index 8a0ecbbcb..43d0def7e 100644 --- a/manifest.c +++ b/manifest.c @@ -823,7 +823,7 @@ manifest_dump(const char *manifest_path, FILE *stream) for (i = 0; i < mf->n_objects; ++i) { char *hash; fprintf(stream, " %u:\n", i); - fprintf(stream, " File hash indexes:"); + fprintf(stream, " File info indexes:"); for (j = 0; j < mf->objects[i].n_file_info_indexes; ++j) { fprintf(stream, " %u", mf->objects[i].file_info_indexes[j]); }