Skip to content

Commit 6b8a896

Browse files
committed
MDEV-6536: postfix win32 handle_connections_win type fix
1 parent 1e7fed7 commit 6b8a896

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/handle_connections_win.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ void handle_connections_win()
601601
wait_events.push_back(hEventShutdown);
602602
n_waits= 1;
603603

604-
for (int i= 0; i < all_listeners.size(); i++)
604+
for (size_t i= 0; i < all_listeners.size(); i++)
605605
{
606606
HANDLE wait_handle= all_listeners[i]->wait_handle();
607607
if (wait_handle)

0 commit comments

Comments
 (0)