Browse Source

Merge branch 'maint'

* maint:
  builtin/init-db.c: eliminate -Wformat warning on Solaris
maint
Junio C Hamano 13 years ago
parent
commit
3daff7c319
  1. 2
      builtin/init-db.c

2
builtin/init-db.c

@ -351,7 +351,7 @@ static void separate_git_dir(const char *git_dir) @@ -351,7 +351,7 @@ static void separate_git_dir(const char *git_dir)
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);

Loading…
Cancel
Save