From 656755c43740ebabfe28885689508c7dafe6e10a Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 15 Sep 2004 09:29:56 +0200 Subject: Fixed compilation warning --- ndb/src/common/transporter/TransporterRegistry.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ndb/src/common') diff --git a/ndb/src/common/transporter/TransporterRegistry.cpp b/ndb/src/common/transporter/TransporterRegistry.cpp index 01f1f74f053..023b30eba62 100644 --- a/ndb/src/common/transporter/TransporterRegistry.cpp +++ b/ndb/src/common/transporter/TransporterRegistry.cpp @@ -68,7 +68,7 @@ SocketServer::Session * TransporterService::newSession(NDB_SOCKET_TYPE sockfd) } //check that nodeid is valid and that there is an allocated transporter - if ( nodeId < 0 || nodeId >= m_transporter_registry->maxTransporters) { + if ( nodeId < 0 || nodeId >= (int) m_transporter_registry->maxTransporters) { NDB_CLOSE_SOCKET(sockfd); return 0; } -- cgit v1.2.1