diff --git a/aqhome/ipc/endpoint_node_ipc.c b/aqhome/ipc/endpoint_node_ipc.c index 507741c..4160d7c 100644 --- a/aqhome/ipc/endpoint_node_ipc.c +++ b/aqhome/ipc/endpoint_node_ipc.c @@ -38,7 +38,6 @@ static void _forwardAnyMessage(GWEN_MSG_ENDPOINT *ep, GWEN_MSG *nodeMsg); GWEN_MSG_ENDPOINT *AQH_IpcNodeEndpoint_new(const char *name, int groupId) { - int fd; GWEN_MSG_ENDPOINT *ep; ep=GWEN_IpcEndpoint_new(name?name:AQH_MSG_ENDPOINT_NODEIPC_NAME, groupId); diff --git a/aqhome/ipc/endpoint_node_ipc_tcp.c b/aqhome/ipc/endpoint_node_ipc_tcp.c index f980f86..f590d13 100644 --- a/aqhome/ipc/endpoint_node_ipc_tcp.c +++ b/aqhome/ipc/endpoint_node_ipc_tcp.c @@ -34,7 +34,6 @@ static GWEN_MSG_ENDPOINT *_createChild(GWEN_MSG_ENDPOINT *ep); GWEN_MSG_ENDPOINT *AQH_TcpIpcNodeEndpoint_new(const char *name, const char *host, int port, int groupId) { - int fd; GWEN_MSG_ENDPOINT *ep; ep=GWEN_TcpIpcEndpoint_new(name?name:AQH_MSG_ENDPOINT_NODEIPCTCP_NAME, host, port, groupId);