]> git.pld-linux.org Git - packages/vim.git/blob - 6.2.416
- remove missing .po files
[packages/vim.git] / 6.2.416
1 To: vim-dev@vim.org
2 Subject: Patch 6.2.416
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=ISO-8859-1
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 6.2.416
11 Problem:    Compiler warning for incompatible pointer.
12 Solution:   Remove the "&" in the call to poll(). (Xavier de Gaye)
13 Files:      src/os_unix.c
14
15
16 *** ../vim-6.2.415/src/os_unix.c        Wed Mar 17 22:18:24 2004
17 --- src/os_unix.c       Mon Mar 29 15:50:31 2004
18 ***************
19 *** 4118,4124 ****
20         }
21   # endif
22   
23 !       ret = poll(&fds, nfd, (int)msec);
24   
25   # ifdef FEAT_SNIFF
26         if (ret < 0)
27 --- 4118,4124 ----
28         }
29   # endif
30   
31 !       ret = poll(fds, nfd, (int)msec);
32   
33   # ifdef FEAT_SNIFF
34         if (ret < 0)
35 *** ../vim-6.2.415/src/version.c        Tue Mar 30 21:49:18 2004
36 --- src/version.c       Tue Mar 30 21:52:16 2004
37 ***************
38 *** 639,640 ****
39 --- 639,642 ----
40   {   /* Add new patch number below this line */
41 + /**/
42 +     416,
43   /**/
44
45 -- 
46 % cat /usr/include/sys/errno.h
47 #define EPERM           1               /* Operation not permitted */
48 #define ENOENT          2               /* No such file or directory */
49 #define ESRCH           3               /* No such process */
50 [...]
51 #define EMACS           666             /* Too many macros */
52 %
53
54  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
55 ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
56 \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
57  \\\  Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
This page took 0.060226 seconds and 3 git commands to generate.