]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Use correct key for "file info indexes" in --dump-manifest output
authorJoel Rosdahl <joel@rosdahl.net>
Sat, 15 Aug 2015 12:38:33 +0000 (14:38 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Sat, 15 Aug 2015 12:38:33 +0000 (14:38 +0200)
manifest.c

index 8a0ecbbcb4d2b88d692c4db961e83cab76189640..43d0def7e8074af53e333b415301c152e9eaca98 100644 (file)
@@ -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]);
                }