mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
Merge pull request #4705 from equalsraf/tb-fix-os-nodetype
Windows: Fix os_nodetype() default return
This commit is contained in:
commit
90995ba788
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user