diff options
author | James McCoy <jamessan@jamessan.com> | 2017-08-09 16:40:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-09 16:40:12 -0400 |
commit | dac216cf8ed3e26beaa0fa252a5e8a78651dbd5b (patch) | |
tree | 08e504e04bcaa86ffec11979f407c36ab8c0037f /src/nvim/os/fs.c | |
parent | e13b4a21cac9d173885249034fe20fb209b157df (diff) | |
parent | 9506ee037083ff047a3601b3d97acf91521a58fb (diff) | |
download | rneovim-dac216cf8ed3e26beaa0fa252a5e8a78651dbd5b.tar.gz rneovim-dac216cf8ed3e26beaa0fa252a5e8a78651dbd5b.tar.bz2 rneovim-dac216cf8ed3e26beaa0fa252a5e8a78651dbd5b.zip |
Merge pull request #7135 from justinmk/buf_write
buf_write(): wrong argument to os_fileinfo_hardlinks()
Diffstat (limited to 'src/nvim/os/fs.c')
-rw-r--r-- | src/nvim/os/fs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/os/fs.c b/src/nvim/os/fs.c index 14dacd97c4..9e3025cf89 100644 --- a/src/nvim/os/fs.c +++ b/src/nvim/os/fs.c @@ -131,6 +131,7 @@ bool os_isdir(const char_u *name) /// NODE_WRITABLE: writable device, socket, fifo, etc. /// NODE_OTHER: non-writable things int os_nodetype(const char *name) + FUNC_ATTR_NONNULL_ALL { #ifdef WIN32 // Edge case from Vim os_win32.c: |