0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

Fix build warnings and problems for tiny/small Win32 build. (Mike Williams)

This commit is contained in:
Bram Moolenaar
2010-07-27 22:41:43 +02:00
parent 3b95389d45
commit 8765a4ac3a
6 changed files with 29 additions and 22 deletions

View File

@@ -2548,7 +2548,7 @@ serverSendEnc(HWND target)
data.cbData = (DWORD)STRLEN(p_enc) + 1;
data.lpData = p_enc;
#else
data.cbData = STRLEN("latin1") + 1;
data.cbData = (DWORD)STRLEN("latin1") + 1;
data.lpData = "latin1";
#endif
(void)SendMessage(target, WM_COPYDATA, (WPARAM)message_window,