summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/dosinst.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/dosinst.c b/src/dosinst.c
index 5c290a8dd8..5b05598872 100644
--- a/src/dosinst.c
+++ b/src/dosinst.c
@@ -473,7 +473,7 @@ run_silent_uninstall(char *uninst_exe)
for (i = 0; ; i++)
{
sprintf(temp_uninst, "%s\\vimun%04X.exe", temp_dir,
- (i + tick) & 0xFFFF);
+ (unsigned int)((i + tick) & 0xFFFF));
if (CopyFile(uninst_exe, temp_uninst, TRUE))
break;
if (GetLastError() != ERROR_FILE_EXISTS)
diff --git a/src/version.c b/src/version.c
index c7d63f194f..c0a2bb4b0f 100644
--- a/src/version.c
+++ b/src/version.c
@@ -796,6 +796,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 727,
+/**/
726,
/**/
725,