diff options
| author | ckelsel <ckelsel@hotmail.com> | 2017-08-10 08:31:50 +0800 |
|---|---|---|
| committer | ckelsel <ckelsel@hotmail.com> | 2017-08-10 08:31:50 +0800 |
| commit | 9a5d309b5743d70832b4daedcea934af5e6cc127 (patch) | |
| tree | b35a1bec0e65da69b183bb074f2dab9354c18534 /src/nvim/os | |
| parent | 8b4dc955b7384180c1ae0eab6050bbf4e17c7673 (diff) | |
| parent | 085102fadf1c1371e863c0e9af8240038ce641e2 (diff) | |
| download | rneovim-9a5d309b5743d70832b4daedcea934af5e6cc127.tar.gz rneovim-9a5d309b5743d70832b4daedcea934af5e6cc127.tar.bz2 rneovim-9a5d309b5743d70832b4daedcea934af5e6cc127.zip | |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'src/nvim/os')
| -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: |