]> git.pld-linux.org Git - packages/vim.git/blame - 7.2.175
- new
[packages/vim.git] / 7.2.175
CommitLineData
b5ccbaa1
ER
1To: vim-dev@vim.org
2Subject: Patch 7.2.175
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.2.175
11Problem: Compiler warning in OpenBSD.
12Solution: Add type cast for NULL. (Dasn)
13Files: src/if_cscope.c
14
15
16*** ../vim-7.2.174/src/if_cscope.c 2009-04-22 16:22:44.000000000 +0200
17--- src/if_cscope.c 2009-05-16 16:15:03.000000000 +0200
18***************
19*** 994,1000 ****
20 vim_free(ppath);
21
22 #if defined(UNIX)
23! if (execl("/bin/sh", "sh", "-c", cmd, NULL) == -1)
24 PERROR(_("cs_create_connection exec failed"));
25
26 exit(127);
27--- 994,1000 ----
28 vim_free(ppath);
29
30 #if defined(UNIX)
31! if (execl("/bin/sh", "sh", "-c", cmd, (char *)NULL) == -1)
32 PERROR(_("cs_create_connection exec failed"));
33
34 exit(127);
35*** ../vim-7.2.174/src/version.c 2009-05-15 21:31:11.000000000 +0200
36--- src/version.c 2009-05-16 16:13:15.000000000 +0200
37***************
38*** 678,679 ****
39--- 678,681 ----
40 { /* Add new patch number below this line */
41+ /**/
42+ 175,
43 /**/
44
45--
46Every time I lose weight, it finds me again!
47
48 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
49/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
50\\\ download, build and distribute -- http://www.A-A-P.org ///
51 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.030892 seconds and 4 git commands to generate.