mirror of
https://github.com/curl/curl.git
synced 2026-08-25 14:53:34 +03:00
lib: silence -Wsign-conversion in base64, strcase, mprintf
Closes #13467
This commit is contained in:
parent
1972588d26
commit
03cf1c7b8c
3 changed files with 22 additions and 20 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue