diff options
author | Rui Abreu Ferreira <raf-ep@gmx.com> | 2016-05-03 22:32:27 +0100 |
---|---|---|
committer | Rui Abreu Ferreira <raf-ep@gmx.com> | 2016-05-06 10:09:46 +0100 |
commit | ca1230b601bec7cb841b58c8b70eea944fa60199 (patch) | |
tree | 5a9f221a09515a1fc67431f803a56d1cba2a59a9 | |
parent | 4682b21ef2a85949dc781410997c169a169402cb (diff) | |
download | rneovim-ca1230b601bec7cb841b58c8b70eea944fa60199.tar.gz rneovim-ca1230b601bec7cb841b58c8b70eea944fa60199.tar.bz2 rneovim-ca1230b601bec7cb841b58c8b70eea944fa60199.zip |
Windows: Fix os_nodetype() default return
-rw-r--r-- | src/nvim/os/fs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/os/fs.c b/src/nvim/os/fs.c index a9c9eb608b..49a74cf0d1 100644 --- a/src/nvim/os/fs.c +++ b/src/nvim/os/fs.c @@ -149,7 +149,7 @@ int os_nodetype(const char *name) case UV_UNKNOWN_HANDLE: default: #ifdef WIN32 - nodetype = NODE_OTHER; + nodetype = NODE_NORMAL; #else nodetype = NODE_WRITABLE; // Everything else is writable? #endif |