The “<objectfile>.ccache-hashX” files are also input data, so I think
that calling the “human-readable” version “<objectfile>.ccache-input” a
bit unpedagogical. Changes:
<objectfile>.ccache-hashX -> <objectfile>.ccache-input-X
<objectfile>.ccache-input -> <objectfile>.ccache-input-text
static void
debug_start(const char *path)
{
- char *hash_bin = format("%s%s", path, ".ccache-hashX");
- char *hash_txt = format("%s%s", path, ".ccache-input");
+ char *hash_bin = format("%s%s", path, ".ccache-input-X");
+ char *hash_txt = format("%s%s", path, ".ccache-input-text");
hash_debug_init(hash_bin, hash_txt);
free(hash_bin);
free(hash_txt);