diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-02-19 13:00:33 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-02-19 13:00:33 +0000 |
commit | fa8ecd3d53cabc747cf2930bc9c3710b39b92ec5 (patch) | |
tree | fc841ac8685163d342cab27420e42e72af80dfab /tests/libtest/lib500.c | |
parent | 134cb66129d1ad360ec50dda455886854b2a0cdd (diff) | |
download | curl-fa8ecd3d53cabc747cf2930bc9c3710b39b92ec5.tar.gz |
typecast the type to an int on return
Diffstat (limited to 'tests/libtest/lib500.c')
-rw-r--r-- | tests/libtest/lib500.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libtest/lib500.c b/tests/libtest/lib500.c index 7cbc65e3f..5943b5849 100644 --- a/tests/libtest/lib500.c +++ b/tests/libtest/lib500.c @@ -8,6 +8,6 @@ int test(char *URL) curl_easy_setopt(curl, CURLOPT_HEADER, TRUE); res = curl_easy_perform(curl); curl_easy_cleanup(curl); - return res; + return (int)res; } |