diff options
author | Ben Straub <bs@github.com> | 2013-08-07 19:29:33 -0700 |
---|---|---|
committer | Ben Straub <bs@github.com> | 2013-08-07 19:29:33 -0700 |
commit | 2c0128ee79243d32e60f19e60acc2e297c1761d6 (patch) | |
tree | d546dd7b80bfb1dbf415efd971f4e27d5a5ce88f /tests-clar/clar_libgit2.c | |
parent | 9c38f7a6523cdc87a897eccb6d83439987f99a4e (diff) | |
download | libgit2-2c0128ee79243d32e60f19e60acc2e297c1761d6.tar.gz |
Rename git_win_str_utf* to git_win32_path_utf*
Diffstat (limited to 'tests-clar/clar_libgit2.c')
-rw-r--r-- | tests-clar/clar_libgit2.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests-clar/clar_libgit2.c b/tests-clar/clar_libgit2.c index 869acd613..ebd034a08 100644 --- a/tests-clar/clar_libgit2.c +++ b/tests-clar/clar_libgit2.c @@ -56,7 +56,7 @@ void cl_git_rewritefile(const char *filename, const char *new_content) char *cl_getenv(const char *name) { - git_win_str_utf16 name_utf16; + git_win32_path_utf16 name_utf16; DWORD alloc_len; wchar_t *value_utf16; char *value_utf8; @@ -81,8 +81,8 @@ char *cl_getenv(const char *name) int cl_setenv(const char *name, const char *value) { - git_win_str_utf16 name_utf16; - git_win_str_utf16 value_utf16; + git_win32_path_utf16 name_utf16; + git_win32_path_utf16 value_utf16; git__utf8_to_16(name_utf16, name); @@ -107,8 +107,8 @@ int cl_setenv(const char *name, const char *value) * the source is a directory, a child of the source). */ int cl_rename(const char *source, const char *dest) { - git_win_str_utf16 source_utf16; - git_win_str_utf16 dest_utf16; + git_win32_path_utf16 source_utf16; + git_win32_path_utf16 dest_utf16; unsigned retries = 1; git__utf8_to_16(source_utf16, source); |