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:
parent
dfb18411cf
commit
36c85b2c46
@ -3830,7 +3830,7 @@ mch_set_winsize_now(void)
|
|||||||
|
|
||||||
static BOOL
|
static BOOL
|
||||||
vim_create_process(
|
vim_create_process(
|
||||||
const char *cmd,
|
char *cmd,
|
||||||
DWORD flags,
|
DWORD flags,
|
||||||
BOOL inherit_handles,
|
BOOL inherit_handles,
|
||||||
STARTUPINFO *si,
|
STARTUPINFO *si,
|
||||||
@ -3853,7 +3853,7 @@ vim_create_process(
|
|||||||
flags, /* Creation flags */
|
flags, /* Creation flags */
|
||||||
NULL, /* Environment */
|
NULL, /* Environment */
|
||||||
NULL, /* Current directory */
|
NULL, /* Current directory */
|
||||||
si, /* Startup information */
|
(LPSTARTUPINFOW)si, /* Startup information */
|
||||||
pi); /* Process information */
|
pi); /* Process information */
|
||||||
vim_free(wcmd);
|
vim_free(wcmd);
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -738,6 +738,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
126,
|
||||||
/**/
|
/**/
|
||||||
125,
|
125,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user