0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

updated for version 7.4.126

Problem:    Compiler warnings for "const" and incompatible types.
Solution:   Remove "const", add type cast. (Ken Takata)
This commit is contained in:
Bram Moolenaar 2013-12-12 20:25:44 +01:00
parent dfb18411cf
commit 36c85b2c46
2 changed files with 4 additions and 2 deletions

View File

@ -3830,7 +3830,7 @@ mch_set_winsize_now(void)
static BOOL
vim_create_process(
const char *cmd,
char *cmd,
DWORD flags,
BOOL inherit_handles,
STARTUPINFO *si,
@ -3853,7 +3853,7 @@ vim_create_process(
flags, /* Creation flags */
NULL, /* Environment */
NULL, /* Current directory */
si, /* Startup information */
(LPSTARTUPINFOW)si, /* Startup information */
pi); /* Process information */
vim_free(wcmd);
return ret;

View File

@ -738,6 +738,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
126,
/**/
125,
/**/