less MAX_REQS (64 was unnecessarily high)

This was SVN commit r981.
This commit is contained in:
janwas 2004-08-12 17:19:20 +00:00
parent cfa6dd3dfe
commit 3459ad5d8f

View File

@ -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];