]> git.pld-linux.org Git - packages/vim.git/blob - 7.2.175
- updated to 7.2.330
[packages/vim.git] / 7.2.175
1 To: vim-dev@vim.org
2 Subject: Patch 7.2.175
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.2.175
11 Problem:    Compiler warning in OpenBSD.
12 Solution:   Add type cast for NULL. (Dasn)
13 Files:      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 -- 
46 Every 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.037065 seconds and 3 git commands to generate.