diff options
author | Yang Tse <yangsita@gmail.com> | 2007-01-28 03:51:10 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2007-01-28 03:51:10 +0000 |
commit | e09450103bc85392b52e55200ac89b2ffe823acd (patch) | |
tree | 86c9819a319e29dbdcbf7582662ba782120fa060 /tests/libtest/lib518.c | |
parent | fbc4407583528059923f48c5887d743e243326c3 (diff) | |
download | curl-e09450103bc85392b52e55200ac89b2ffe823acd.tar.gz |
Compiler warning fix
Diffstat (limited to 'tests/libtest/lib518.c')
-rw-r--r-- | tests/libtest/lib518.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libtest/lib518.c b/tests/libtest/lib518.c index 3f5ac11a6..ffe38961e 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); |