summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVincent Lee <vincentlee.kr@gmail.com>2012-01-03 19:44:13 +0900
committerVincent Lee <vincentlee.kr@gmail.com>2012-01-03 19:44:13 +0900
commitc6a437eaec40c7b145af9e4a74af1b9804b4f0c8 (patch)
tree24eb517333d25a39645b47ff3d779d2754adbaaa /src
parent1d415455d9484e99dcaa7f061bc9b172c083dabe (diff)
downloadlibgit2-c6a437eaec40c7b145af9e4a74af1b9804b4f0c8.tar.gz
Add missing semicolon
Diffstat (limited to 'src')
-rw-r--r--src/win32/utf-conv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/win32/utf-conv.h b/src/win32/utf-conv.h
index bbb5c4f69..feae249f9 100644
--- a/src/win32/utf-conv.h
+++ b/src/win32/utf-conv.h
@@ -11,7 +11,7 @@
#define INCLUDE_git_utfconv_h__
wchar_t* gitwin_to_utf16(const char* str);
-int gitwin_append_utf16(wchar_t *buffer, const char *str, size_t len)
+int gitwin_append_utf16(wchar_t *buffer, const char *str, size_t len);
char* gitwin_from_utf16(const wchar_t* str);
#endif