Skip to content

Commit 4c38d66

Browse files
committed
patch 7.4.2150
Problem: Warning with MinGW 64. (John Marriott) Solution: Change return type. (Ken Takata)
1 parent 7cba71d commit 4c38d66

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/os_win32.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4212,7 +4212,7 @@ mch_system_classic(char *cmd, int options)
42124212
* process. This way avoid to hang up vim totally if the children
42134213
* process take a long time to process the lines.
42144214
*/
4215-
static DWORD WINAPI
4215+
static unsigned int __stdcall
42164216
sub_process_writer(LPVOID param)
42174217
{
42184218
HANDLE g_hChildStd_IN_Wr = param;

src/version.c

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

764764
static int included_patches[] =
765765
{ /* Add new patch number below this line */
766+
/**/
767+
2150,
766768
/**/
767769
2149,
768770
/**/

0 commit comments

Comments
 (0)