printf: fix format specifiers

Closes #3426
This commit is contained in:
Rikard Falkeborn 2018-09-16 22:04:49 +02:00 committed by Daniel Stenberg
parent c7c362a24c
commit fa2d6ba84d
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
7 changed files with 19 additions and 20 deletions

View file

@ -1396,7 +1396,7 @@ static int _strlen_check(int linenumber, char *buf, size_t len)
size_t buflen = strlen(buf);
if(len != buflen) {
/* they shouldn't differ */
printf("sprintf strlen:%d failed:\nwe '%d'\nsystem: '%d'\n",
printf("sprintf strlen:%d failed:\nwe '%zu'\nsystem: '%zu'\n",
linenumber, buflen, len);
return 1;
}