summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Black <daniel@mariadb.org>2021-03-05 11:29:28 +1100
committerDaniel Black <daniel@mariadb.org>2021-03-05 13:03:51 +1100
commit6b8a89683701fadfc6d8cdcabd255019d828ad54 (patch)
treef9e4aae7a27cd4df77ab92e0b450c2efc87f08de
parent1e7fed721bda1fce2e956d3576339e71923f3688 (diff)
downloadmariadb-git-6b8a89683701fadfc6d8cdcabd255019d828ad54.tar.gz
MDEV-6536: postfix win32 handle_connections_win type fix
-rw-r--r--sql/handle_connections_win.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/handle_connections_win.cc b/sql/handle_connections_win.cc
index 07d50590869..8cfcd9d6e54 100644
--- a/sql/handle_connections_win.cc
+++ b/sql/handle_connections_win.cc
@@ -601,7 +601,7 @@ void handle_connections_win()
wait_events.push_back(hEventShutdown);
n_waits= 1;
- for (int i= 0; i < all_listeners.size(); i++)
+ for (size_t i= 0; i < all_listeners.size(); i++)
{
HANDLE wait_handle= all_listeners[i]->wait_handle();
if (wait_handle)