From 3459ad5d8fefabb239954096ab97d2e6e1e54c66 Mon Sep 17 00:00:00 2001 From: janwas Date: Thu, 12 Aug 2004 17:19:20 +0000 Subject: [PATCH] less MAX_REQS (64 was unnecessarily high) This was SVN commit r981. --- source/lib/sysdep/win/waio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/lib/sysdep/win/waio.cpp b/source/lib/sysdep/win/waio.cpp index 066f44c82e..ab41adaec9 100755 --- a/source/lib/sysdep/win/waio.cpp +++ b/source/lib/sysdep/win/waio.cpp @@ -189,7 +189,7 @@ struct Req // TODO: explain links between Req and cb -const int MAX_REQS = 64; +const int MAX_REQS = 16; static Req reqs[MAX_REQS];