diff --git a/src/node_wrap.h b/src/node_wrap.h index c03b30eb4d..7c3f63fb20 100644 --- a/src/node_wrap.h +++ b/src/node_wrap.h @@ -40,7 +40,7 @@ extern v8::Persistent tcpConstructorTmpl; do { \ if (!tcpConstructorTmpl.IsEmpty() && \ HasInstance(tcpConstructorTmpl, obj)) { \ - PipeWrap* wrap = PipeWrap::Unwrap(obj); \ + TCPWrap* wrap = TCPWrap::Unwrap(obj); \ BODY \ } else if (!ttyConstructorTmpl.IsEmpty() && \ HasInstance(ttyConstructorTmpl, obj)) { \ @@ -48,7 +48,7 @@ extern v8::Persistent tcpConstructorTmpl; BODY \ } else if (!pipeConstructorTmpl.IsEmpty() && \ HasInstance(pipeConstructorTmpl, obj)) { \ - TCPWrap* wrap = TCPWrap::Unwrap(obj); \ + PipeWrap* wrap = PipeWrap::Unwrap(obj); \ BODY \ } \ } while (0)