Commit 402ec2f5 authored by Ben Laurie's avatar Ben Laurie
Browse files

Signed/unsigned compare.

parent d32f5d87
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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",