From 655ca16033c6f03dd1d3bbb3b9777119994ba9b5 Mon Sep 17 00:00:00 2001 From: unknown <tomas@poseidon.ndb.mysql.com> Date: Tue, 26 Oct 2004 10:56:41 +0000 Subject: [PATCH] removed compiler warning --- ndb/src/common/logger/Logger.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ndb/src/common/logger/Logger.cpp b/ndb/src/common/logger/Logger.cpp index fed5c21114..00a2fae67b 100644 --- a/ndb/src/common/logger/Logger.cpp +++ b/ndb/src/common/logger/Logger.cpp @@ -232,7 +232,7 @@ Logger::enable(LoggerLevel logLevel) { if (logLevel == LL_ALL) { - for (int i = 1; i < MAX_LOG_LEVELS; i++) + for (unsigned i = 1; i < MAX_LOG_LEVELS; i++) { m_logLevels[i] = true; } @@ -264,7 +264,7 @@ Logger::disable(LoggerLevel logLevel) { if (logLevel == LL_ALL) { - for (int i = 0; i < MAX_LOG_LEVELS; i++) + for (unsigned i = 0; i < MAX_LOG_LEVELS; i++) { m_logLevels[i] = false; } -- 2.30.9