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 /src/path.c | |
parent | 9c38f7a6523cdc87a897eccb6d83439987f99a4e (diff) | |
download | libgit2-2c0128ee79243d32e60f19e60acc2e297c1761d6.tar.gz |
Rename git_win_str_utf* to git_win32_path_utf*
Diffstat (limited to 'src/path.c')
-rw-r--r-- | src/path.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/path.c b/src/path.c index da7bd90a0..72831c736 100644 --- a/src/path.c +++ b/src/path.c @@ -486,7 +486,7 @@ bool git_path_is_empty_dir(const char *path) { git_buf pathbuf = GIT_BUF_INIT; HANDLE hFind = INVALID_HANDLE_VALUE; - git_win_str_utf16 wbuf; + git_win32_path_utf16 wbuf; WIN32_FIND_DATAW ffd; bool retval = true; |