vendor/libgit2/src/win32/findfile.c in rugged-0.25.1.1 vs vendor/libgit2/src/win32/findfile.c in rugged-0.26.0b1
- old
+ new
@@ -36,10 +36,10 @@
static int win32_path_to_8(git_buf *dest, const wchar_t *src)
{
git_win32_utf8_path utf8_path;
if (git_win32_path_to_utf8(utf8_path, src) < 0) {
- giterr_set(GITERR_OS, "Unable to convert path to UTF-8");
+ giterr_set(GITERR_OS, "unable to convert path to UTF-8");
return -1;
}
/* Convert backslashes to forward slashes */
git_path_mkposix(utf8_path);