Skip to content

Commit 97f261b

Browse files
avargitster
authored andcommitted
builtin/init-db.c: eliminate -Wformat warning on Solaris
On Solaris systems we'd warn about an implicit cast of mode_t when we printed things out with the %d format. We'd get this warning under GCC 4.6.0 with Solaris headers: builtin/init-db.c: In function ‘separate_git_dir’: builtin/init-db.c:354:4: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘mode_t’ [-Wformat] We've been doing this ever since v1.7.4.1-296-gb57fb80. Just work around this by adding an explicit cast. Signed-off-by: Ævar Arnfjörð Bjarmason <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 7b6c583 commit 97f261b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builtin/init-db.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ static void separate_git_dir(const char *git_dir)
351351
else if (S_ISDIR(st.st_mode))
352352
src = git_link;
353353
else
354-
die(_("unable to handle file type %d"), st.st_mode);
354+
die(_("unable to handle file type %d"), (int)st.st_mode);
355355

356356
if (rename(src, git_dir))
357357
die_errno(_("unable to move %s to %s"), src, git_dir);

0 commit comments

Comments
 (0)