chore: bump deps
This commit is contained in:
6
deps/curl/tests/libtest/lib1900.c
vendored
6
deps/curl/tests/libtest/lib1900.c
vendored
@ -27,7 +27,7 @@
|
||||
#include "warnless.h"
|
||||
#include "memdebug.h"
|
||||
|
||||
int test(char *URL)
|
||||
CURLcode test(char *URL)
|
||||
{
|
||||
CURLcode res = CURLE_OK;
|
||||
CURL *hnd = NULL;
|
||||
@ -45,11 +45,11 @@ int test(char *URL)
|
||||
curl_easy_cleanup(hnd);
|
||||
curl_easy_cleanup(second);
|
||||
curl_global_cleanup();
|
||||
return 0;
|
||||
return CURLE_OK;
|
||||
|
||||
test_cleanup:
|
||||
curl_easy_cleanup(hnd);
|
||||
curl_easy_cleanup(second);
|
||||
curl_global_cleanup();
|
||||
return (int)res;
|
||||
return res;
|
||||
}
|
||||
|
Reference in New Issue
Block a user