Skip to content

Commit 74a97b1

Browse files
committed
patch 7.4.1349
Problem: And some more MingW compiler warnings. (Cesar Romani) Solution: Add type casts.
1 parent 7f0608f commit 74a97b1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/if_mzsch.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1101,10 +1101,10 @@ startup_mzscheme(void)
11011101
MZ_GC_VAR_IN_REG(0, coll_path);
11021102
MZ_GC_REG();
11031103
/* workaround for dynamic loading on windows */
1104-
s = vim_getenv("PLTCOLLECTS", &mustfree);
1104+
s = vim_getenv((char_u *)"PLTCOLLECTS", &mustfree);
11051105
if (s != NULL)
11061106
{
1107-
coll_path = scheme_make_path(s);
1107+
coll_path = scheme_make_path((char *)s);
11081108
MZ_GC_CHECK();
11091109
if (mustfree)
11101110
vim_free(s);

src/version.c

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

748748
static int included_patches[] =
749749
{ /* Add new patch number below this line */
750+
/**/
751+
1349,
750752
/**/
751753
1348,
752754
/**/

0 commit comments

Comments
 (0)