mirror of
https://github.com/curl/curl.git
synced 2026-07-24 09:57:21 +03:00
fix compiler warning
This commit is contained in:
parent
2179ef9fa9
commit
a6fb6b70c7
3 changed files with 15 additions and 9 deletions
|
|
@ -911,7 +911,7 @@ static int dprintf_formatf(
|
|||
static const char strnil[] = "(nil)";
|
||||
const char *point;
|
||||
|
||||
width -= sizeof(strnil) - 1;
|
||||
width -= (long)(sizeof(strnil) - 1);
|
||||
if(p->flags & FLAGS_LEFT)
|
||||
while(width-- > 0)
|
||||
OUTCHAR(' ');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue