Skip to content

Commit a7824dc

Browse files
committed
updated for version 7.4.126
Problem: Compiler warnings for "const" and incompatible types. Solution: Remove "const", add type cast. (Ken Takata)
1 parent 277ddd5 commit a7824dc

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/os_win32.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3830,7 +3830,7 @@ mch_set_winsize_now(void)
38303830

38313831
static BOOL
38323832
vim_create_process(
3833-
const char *cmd,
3833+
char *cmd,
38343834
DWORD flags,
38353835
BOOL inherit_handles,
38363836
STARTUPINFO *si,
@@ -3853,7 +3853,7 @@ vim_create_process(
38533853
flags, /* Creation flags */
38543854
NULL, /* Environment */
38553855
NULL, /* Current directory */
3856-
si, /* Startup information */
3856+
(LPSTARTUPINFOW)si, /* Startup information */
38573857
pi); /* Process information */
38583858
vim_free(wcmd);
38593859
return ret;

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -738,6 +738,8 @@ static char *(features[]) =
738738

739739
static int included_patches[] =
740740
{ /* Add new patch number below this line */
741+
/**/
742+
126,
741743
/**/
742744
125,
743745
/**/

0 commit comments

Comments
 (0)