From: Yang Tse Date: Sun, 28 Jan 2007 03:51:10 +0000 (+0000) Subject: Compiler warning fix X-Git-Tag: curl-7_16_1~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e09450103bc85392b52e55200ac89b2ffe823acd;p=thirdparty%2Fcurl.git Compiler warning fix --- diff --git a/tests/libtest/lib518.c b/tests/libtest/lib518.c index 3f5ac11a6f..ffe38961eb 100644 --- a/tests/libtest/lib518.c +++ b/tests/libtest/lib518.c @@ -251,7 +251,7 @@ static int rlimit(int keep_open) /* verify that we won't overflow size_t in malloc() */ - if (num_open.rlim_max > ((size_t)-1) / sizeof(*fd)) { + if ((size_t)(num_open.rlim_max) > ((size_t)-1) / sizeof(*fd)) { sprintf(strbuff1, fmt, num_open.rlim_max); sprintf(strbuff, "unable to allocate an array for %s " "file descriptors, would overflow size_t", strbuff1); diff --git a/tests/libtest/lib537.c b/tests/libtest/lib537.c index fd030dd105..ab24b42424 100644 --- a/tests/libtest/lib537.c +++ b/tests/libtest/lib537.c @@ -233,7 +233,7 @@ static int rlimit(int keep_open) /* verify that we won't overflow size_t in malloc() */ - if (num_open.rlim_max > ((size_t)-1) / sizeof(*fd)) { + if ((size_t)(num_open.rlim_max) > ((size_t)-1) / sizeof(*fd)) { sprintf(strbuff1, fmt, num_open.rlim_max); sprintf(strbuff, "unable to allocate an array for %s " "file descriptors, would overflow size_t", strbuff1);