Properly pass wchar * type to giterr_set

This commit is contained in:
Boris Barbulovski 2016-11-20 11:30:45 +01:00 committed by GitHub
parent ae5838f118
commit 86364af995

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,
* not counting the NULL terminator */
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 '%S'", path);
return -1;
}
}