Windows: Fix os_nodetype() default return

This commit is contained in:
Rui Abreu Ferreira 2016-05-03 22:32:27 +01:00
parent 4682b21ef2
commit ca1230b601

View File

@ -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