diff options
author | Stefan Hoffmann <stefan991@gmail.com> | 2014-08-27 22:36:38 +0200 |
---|---|---|
committer | Stefan Hoffmann <stefan991@gmail.com> | 2014-08-31 15:47:44 +0200 |
commit | 7ac191ab1085875319e139b044ec1f98498b87ce (patch) | |
tree | 85e4651f4d56f6dc5b61df65eff9da9dd83ecce2 /src/nvim/diff.c | |
parent | 10813ce38c6588664e1decc8ba35424923cfb2e4 (diff) | |
download | rneovim-7ac191ab1085875319e139b044ec1f98498b87ce.tar.gz rneovim-7ac191ab1085875319e139b044ec1f98498b87ce.tar.bz2 rneovim-7ac191ab1085875319e139b044ec1f98498b87ce.zip |
fileinfo: change returntype of os_fileinfo_size
off_t -> uint64_t
Diffstat (limited to 'src/nvim/diff.c')
-rw-r--r-- | src/nvim/diff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/diff.c b/src/nvim/diff.c index 8b0bf4e997..73b5731ad0 100644 --- a/src/nvim/diff.c +++ b/src/nvim/diff.c @@ -949,7 +949,7 @@ void ex_diffpatch(exarg_T *eap) // Only continue if the output file was created. FileInfo file_info; bool info_ok = os_fileinfo((char *)tmp_new, &file_info); - off_t filesize = os_fileinfo_size(&file_info); + uint64_t filesize = os_fileinfo_size(&file_info); if (!info_ok || filesize == 0) { EMSG(_("E816: Cannot read patch output")); } else { |