diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-11-08 19:49:02 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-11-08 19:49:02 +0000 |
commit | 6f1924547b30753738ea0eb41ab31513894fde83 (patch) | |
tree | 96f66ba95fffc6689f546ec87d4054853be3fab3 /src/fileio.c | |
parent | a443af88a48d74b56ea9aa2aa486f52f340bbf77 (diff) | |
download | vim-git-6f1924547b30753738ea0eb41ab31513894fde83.tar.gz |
updated for version 7.1-153v7.1.153
Diffstat (limited to 'src/fileio.c')
-rw-r--r-- | src/fileio.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c index 01663890a..f6a4da791 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -3209,7 +3209,8 @@ buf_write(buf, fname, sfname, start, end, eap, append, forceit, * Get information about original file (if there is one). */ #if defined(UNIX) && !defined(ARCHIE) - st_old.st_dev = st_old.st_ino = 0; + st_old.st_dev = 0; + st_old.st_ino = 0; perm = -1; if (mch_stat((char *)fname, &st_old) < 0) newfile = TRUE; |