Commit 15769731a2411933bb9236d06c5f15e2c4e7929b

Edward Thomson 2016-12-07T15:01:20

Merge pull request #4014 from bokic/patch-1 Properly pass `wchar *` type to giterr_set

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/win32/w32_util.h b/src/win32/w32_util.h
index 2e475e5..784a7a0 100644
--- a/src/win32/w32_util.h
+++ b/src/win32/w32_util.h
@@ -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 '%ls'", path);
 				return -1;
 			}
 		}