mirror of
https://github.com/curl/curl.git
synced 2026-08-06 06:36:14 +03:00
lib: fix compiler warnings
Fix the following warnings when building the tests by using the correct types: cast from 'const char *' to 'void *' drops const qualifier [-Wcast-qual] implicit conversion changes signedness [-Wsign-conversion]
This commit is contained in:
parent
fa12f54bba
commit
cee39aa3be
2 changed files with 3 additions and 3 deletions
|
|
@ -610,7 +610,7 @@ static int dprintf_formatf(
|
|||
int is_neg;
|
||||
|
||||
/* Base of a number to be written. */
|
||||
long base;
|
||||
unsigned long base;
|
||||
|
||||
/* Integral values to be written. */
|
||||
mp_uintmax_t num;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue