diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-06-26 16:44:24 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-06-26 16:44:24 +0200 |
commit | f4fba6dcd508cb369ffa6916d9cb3fcf3d7ed548 (patch) | |
tree | eadfcc55dff51f143e33a228f91c9c60302fbd20 /src/proto/ex_cmds.pro | |
parent | d388d2ac8bf8c770bf97dc406e99a20ba5104855 (diff) | |
download | vim-f4fba6dcd508cb369ffa6916d9cb3fcf3d7ed548.zip |
patch 7.4.1955
Problem: Using 32-bit Perl with 64-bit time_t causes memory corruption.
(Christian Brabandt)
Solution: Use time_T instead of time_t for global variables. (Ken Takata)
Diffstat (limited to 'src/proto/ex_cmds.pro')
-rw-r--r-- | src/proto/ex_cmds.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/ex_cmds.pro b/src/proto/ex_cmds.pro index bc624bf2f..b3713140c 100644 --- a/src/proto/ex_cmds.pro +++ b/src/proto/ex_cmds.pro @@ -17,7 +17,7 @@ int viminfo_readline(vir_T *virp); char_u *viminfo_readstring(vir_T *virp, int off, int convert); void viminfo_writestring(FILE *fd, char_u *p); int barline_writestring(FILE *fd, char_u *s, int remaining_start); -time_t vim_time(void); +time_T vim_time(void); void do_fixdel(exarg_T *eap); void print_line_no_prefix(linenr_T lnum, int use_number, int list); void print_line(linenr_T lnum, int use_number, int list); |