summaryrefslogtreecommitdiff
path: root/data/vim/patches/8.1.0727
blob: 9578ad4a2b737bb64150c2959a97d9b15729b95d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
To: vim_dev@googlegroups.com
Subject: Patch 8.1.0727
Fcc: outbox
From: Bram Moolenaar <Bram@moolenaar.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
------------

Patch 8.1.0727
Problem:    Compiler warning for sprintf() argument.
Solution:   Add type cast.
Files:	    src/dosinst.c


*** ../vim-8.1.0726/src/dosinst.c	2018-12-21 16:21:50.537239636 +0100
--- src/dosinst.c	2019-01-11 18:17:23.239479753 +0100
***************
*** 473,479 ****
      for (i = 0; ; i++)
      {
  	sprintf(temp_uninst, "%s\\vimun%04X.exe", temp_dir,
! 							(i + tick) & 0xFFFF);
  	if (CopyFile(uninst_exe, temp_uninst, TRUE))
  	    break;
  	if (GetLastError() != ERROR_FILE_EXISTS)
--- 473,479 ----
      for (i = 0; ; i++)
      {
  	sprintf(temp_uninst, "%s\\vimun%04X.exe", temp_dir,
! 					  (unsigned int)((i + tick) & 0xFFFF));
  	if (CopyFile(uninst_exe, temp_uninst, TRUE))
  	    break;
  	if (GetLastError() != ERROR_FILE_EXISTS)
*** ../vim-8.1.0726/src/version.c	2019-01-11 20:34:18.300314693 +0100
--- src/version.c	2019-01-11 20:36:25.827157228 +0100
***************
*** 797,798 ****
--- 797,800 ----
  {   /* Add new patch number below this line */
+ /**/
+     727,
  /**/

-- 
hundred-and-one symptoms of being an internet addict:
167. You have more than 200 websites bookmarked.

 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///