X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=convert-cache.c;h=77f8bff9ac0cd61412e69921c610e7301f7c350b;hb=000182eacf99cde27d5916aa415921924b82972c;hp=631d1aa910e7328c99642495f93908c749074f91;hpb=812666c8e66a21e668c0789d0422aa5a7db54961;p=git.git diff --git a/convert-cache.c b/convert-cache.c index 631d1aa9..77f8bff9 100644 --- a/convert-cache.c +++ b/convert-cache.c @@ -99,7 +99,7 @@ static int write_subdirectory(void *buffer, unsigned long size, const char *base continue; } - newlen += sprintf(new + newlen, "%o %.*s", S_IFDIR, slash - path, path); + newlen += sprintf(new + newlen, "%o %.*s", S_IFDIR, (int)(slash - path), path); new[newlen++] = 0; sha1 = (unsigned char *)(new + newlen); newlen += 20; @@ -303,8 +303,8 @@ int main(int argc, char **argv) unsigned char sha1[20]; struct entry *entry; - if (argc != 2 || get_sha1_hex(argv[1], sha1)) - usage("convert-cache "); + if (argc != 2 || get_sha1(argv[1], sha1)) + usage("git-convert-cache "); entry = convert_entry(sha1); printf("new sha1: %s\n", sha1_to_hex(entry->new_sha1));