Explorar o código

Windows build fix.

Adam Ierymenko %!s(int64=11) %!d(string=hai) anos
pai
achega
e3239d23f4
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      node/SocketManager.cpp

+ 2 - 2
node/SocketManager.cpp

@@ -466,9 +466,9 @@ void SocketManager::poll(unsigned long timeout)
 	if (FD_ISSET(_whackReceivePipe,&rfds)) {
 		char tmp[16];
 #ifdef __WINDOWS__
-		::recv(_whackReceivePipe,&tmp,16,0);
+		::recv(_whackReceivePipe,tmp,16,0);
 #else
-		::read(_whackReceivePipe,&tmp,16);
+		::read(_whackReceivePipe,tmp,16);
 #endif
 	}