28 lines
881 B
Diff
28 lines
881 B
Diff
From 64ba4a69c4406a2477bd97e755c2896cca017a49 Mon Sep 17 00:00:00 2001
|
|
From: Ray Donnelly <mingw.android@gmail.com>
|
|
Date: Sat, 30 Aug 2014 23:51:20 +0100
|
|
Subject: [PATCH 1/5] Win32: Update NODE_NET_SOCKET_{READ,WRITE}() macros
|
|
|
|
They both take 4 arguments, not 2.
|
|
---
|
|
src/node_win32_etw_provider.h | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/node_win32_etw_provider.h b/src/node_win32_etw_provider.h
|
|
index 8d7cedd..69f20a2 100644
|
|
--- a/src/node_win32_etw_provider.h
|
|
+++ b/src/node_win32_etw_provider.h
|
|
@@ -90,7 +90,7 @@
|
|
INLINE bool NODE_NET_SOCKET_WRITE_ENABLED();
|
|
INLINE bool NODE_V8SYMBOL_ENABLED();
|
|
|
|
-#define NODE_NET_SOCKET_READ(arg0, arg1)
|
|
-#define NODE_NET_SOCKET_WRITE(arg0, arg1)
|
|
+#define NODE_NET_SOCKET_READ(arg0, arg1, arg2, arg3, arg4)
|
|
+#define NODE_NET_SOCKET_WRITE(arg0, arg1, arg2, arg3, arg4)
|
|
}
|
|
#endif // SRC_ETW_H_
|
|
--
|
|
2.1.0
|
|
|