Properly pass wchar * type to giterr_set

This commit is contained in:
Boris Barbulovski 2016-12-06 03:08:52 +01:00 committed by GitHub
parent 86364af995
commit 9af59f5dcd

View File

@ -174,7 +174,7 @@ GIT_INLINE(int) git_win32__file_attribute_to_stat(
/* st_size gets the UTF-8 length of the target name, in bytes, /* st_size gets the UTF-8 length of the target name, in bytes,
* not counting the NULL terminator */ * not counting the NULL terminator */
if ((st->st_size = git__utf16_to_8(NULL, 0, target)) < 0) { if ((st->st_size = git__utf16_to_8(NULL, 0, target)) < 0) {
giterr_set(GITERR_OS, "Could not convert reparse point name for '%S'", path); giterr_set(GITERR_OS, "Could not convert reparse point name for '%ls'", path);
return -1; return -1;
} }
} }