Signed/unsigned compare.

Reviewed-by: Matt Caswell <matt@openssl.org>
This commit is contained in:
Ben Laurie 2016-04-15 09:45:25 +01:00
parent d32f5d8733
commit 402ec2f52c
1 changed files with 1 additions and 1 deletions

View File

@ -1160,7 +1160,7 @@ static int run_benchmark(int async_jobs, int (*loop_function)(void *), loopargs_
max_fd = job_fd;
}
if (max_fd >= FD_SETSIZE) {
if (max_fd >= (OSSL_ASYNC_FD)FD_SETSIZE) {
BIO_printf(bio_err,
"Error: max_fd (%d) must be smaller than FD_SETSIZE (%d). "
"Decrease the value of async_jobs\n",