chore: bump deps

This commit is contained in:
Rim
2025-04-29 03:15:39 -04:00
parent 8c194d2fe3
commit 7241d52ef1
2578 changed files with 85779 additions and 79896 deletions

View File

@ -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;
}