lib: silence -Wsign-conversion in base64, strcase, mprintf

Closes #13467
This commit is contained in:
Viktor Szakats 2024-04-24 19:34:12 +02:00
parent 1972588d26
commit 03cf1c7b8c
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
3 changed files with 22 additions and 20 deletions

View file

@ -243,7 +243,7 @@ static CURLcode base64_encode(const char *table64,
*outptr = base64data;
/* Return the length of the new data */
*outlen = output - base64data;
*outlen = (size_t)(output - base64data);
return CURLE_OK;
}