mirror of
https://github.com/neovim/neovim.git
synced 2025-10-03 08:28:34 +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:
|
case UV_UNKNOWN_HANDLE:
|
||||||
default:
|
default:
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
nodetype = NODE_OTHER;
|
nodetype = NODE_NORMAL;
|
||||||
#else
|
#else
|
||||||
nodetype = NODE_WRITABLE; // Everything else is writable?
|
nodetype = NODE_WRITABLE; // Everything else is writable?
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user