mirror of
https://github.com/neovim/neovim.git
synced 2025-10-03 16:36:30 +00:00
Windows: Fix os_nodetype() default return
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user