Problem: Compiler warnings for "const" and incompatible types.
Solution: Remove "const", add type cast. (Ken Takata)
static BOOL
vim_create_process(
- const char *cmd,
+ char *cmd,
DWORD flags,
BOOL inherit_handles,
STARTUPINFO *si,
flags, /* Creation flags */
NULL, /* Environment */
NULL, /* Current directory */
- si, /* Startup information */
+ (LPSTARTUPINFOW)si, /* Startup information */
pi); /* Process information */
vim_free(wcmd);
return ret;
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 126,
/**/
125,
/**/