Commit c6a437eaec40c7b145af9e4a74af1b9804b4f0c8

Vincent Lee 2012-01-03T19:44:13

Add missing semicolon

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/win32/utf-conv.h b/src/win32/utf-conv.h
index bbb5c4f..feae249 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