X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;ds=sidebyside;f=builtin%2Finit-db.c;h=0dacb8b79c57cae2b789eb84d7cfbdb1654ba52f;hb=e8f6b51a6bcc904b8a5fed831f718c3f9ed7ef34;hp=025aa47c804e4400cfa16ae8acd8dc2a5175e7c0;hpb=69d61daec7a7915f6a664f32002fd9403e7f2a34;p=git.git diff --git a/builtin/init-db.c b/builtin/init-db.c index 025aa47c8..0dacb8b79 100644 --- a/builtin/init-db.c +++ b/builtin/init-db.c @@ -347,11 +347,11 @@ static void separate_git_dir(const char *git_dir) const char *src; if (S_ISREG(st.st_mode)) - src = read_gitfile_gently(git_link); + src = read_gitfile(git_link); else if (S_ISDIR(st.st_mode)) src = git_link; else - die(_("unable to handle file type %d"), st.st_mode); + die(_("unable to handle file type %d"), (int)st.st_mode); if (rename(src, git_dir)) die_errno(_("unable to move %s to %s"), src, git_dir);