]> git.pld-linux.org Git - packages/vim.git/blob - 6.2.026
- use new bonobo patch (20040115)
[packages/vim.git] / 6.2.026
1 To: vim-dev@vim.org
2 Subject: Patch 6.2.026
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.026
11 Problem:    Warning for utimes() argument.
12 Solution:   Add a typecast.
13 Files:      src/fileio.c
14
15
16 *** ../vim-6.2.025/src/fileio.c Thu May 29 21:00:53 2003
17 --- src/fileio.c        Tue Jun 24 15:34:24 2003
18 ***************
19 *** 2318,2324 ****
20   #   ifdef NeXT
21       (void)utimes((char *)fname, tvp);
22   #   else
23 !     (void)utimes((char *)fname, &tvp);
24   #   endif
25   #  endif
26   # endif
27 --- 2318,2324 ----
28   #   ifdef NeXT
29       (void)utimes((char *)fname, tvp);
30   #   else
31 !     (void)utimes((char *)fname, (const struct timeval *)&tvp);
32   #   endif
33   #  endif
34   # endif
35 *** ../vim-6.2.025/src/version.c        Thu Jul 24 21:29:03 2003
36 --- src/version.c       Thu Jul 24 21:43:40 2003
37 ***************
38 *** 632,633 ****
39 --- 632,635 ----
40   {   /* Add new patch number below this line */
41 + /**/
42 +     26,
43   /**/
44
45 -- 
46 Mynd you, m00se bites Kan be pretty nasti ...
47                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
48
49  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
50 ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
51 \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
52  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
This page took 0.02989 seconds and 3 git commands to generate.