Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
53d712dc
Commit
53d712dc
authored
Aug 13, 2013
by
Vicent Marti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windows: Missing renames.
parent
abf37327
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
src/win32/posix.h
+2
-2
src/win32/utf-conv.h
+1
-1
No files found.
src/win32/posix.h
View file @
53d712dc
...
...
@@ -20,9 +20,9 @@ GIT_INLINE(int) p_link(const char *old, const char *new)
GIT_INLINE
(
int
)
p_mkdir
(
const
char
*
path
,
mode_t
mode
)
{
git_win32_path
_utf16
buf
;
git_win32_path
buf
;
GIT_UNUSED
(
mode
);
git__win32_path_
utf8_to_16
(
buf
,
path
);
git__win32_path_
from_c
(
buf
,
path
);
return
_wmkdir
(
buf
);
}
...
...
src/win32/utf-conv.h
View file @
53d712dc
...
...
@@ -25,7 +25,7 @@ GIT_INLINE(int) git__win32_path_from_c(git_win32_path dest, const char *src)
return
git__utf8_to_16
(
dest
,
GIT_WIN_PATH_UTF16
,
src
);
}
GIT_INLINE
(
int
)
git__win32_path_to_c
(
char
*
dest
,
const
git_win32_path
*
src
)
GIT_INLINE
(
int
)
git__win32_path_to_c
(
char
*
dest
,
const
git_win32_path
src
)
{
return
git__utf16_to_8
(
dest
,
GIT_WIN_PATH_UTF8
,
src
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment