Skip to content

Commit c3d31b8

Browse files
bagderptitSeb
authored andcommitted
lib: fix a few *printf() flag mistakes
Reported-by: Gisle Vanem Ref: curl#11574 Closes curl#11579
1 parent a25c9ba commit c3d31b8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/strerror.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -938,7 +938,7 @@ const char *Curl_winapi_strerror(DWORD err, char *buf, size_t buflen)
938938

939939
#ifndef CURL_DISABLE_VERBOSE_STRINGS
940940
if(!get_winapi_error(err, buf, buflen)) {
941-
msnprintf(buf, buflen, "Unknown error %u (0x%08X)", err, err);
941+
msnprintf(buf, buflen, "Unknown error %lu (0x%08lX)", err, err);
942942
}
943943
#else
944944
{

lib/vtls/x509asn1.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -973,7 +973,7 @@ static int do_pubkey(struct Curl_easy *data, int certnum,
973973
infof(data, " ECC Public Key (%lu bits)", len);
974974
if(data->set.ssl.certinfo) {
975975
char q[sizeof(len) * 8 / 3 + 1];
976-
(void)msnprintf(q, sizeof(q), "%lu", len);
976+
(void)msnprintf(q, sizeof(q), "%zu", len);
977977
if(ssl_push_certinfo(data, certnum, "ECC Public Key", q))
978978
return 1;
979979
}
@@ -1007,7 +1007,7 @@ static int do_pubkey(struct Curl_easy *data, int certnum,
10071007
infof(data, " RSA Public Key (%lu bits)", len);
10081008
if(data->set.ssl.certinfo) {
10091009
char r[sizeof(len) * 8 / 3 + 1];
1010-
msnprintf(r, sizeof(r), "%lu", len);
1010+
msnprintf(r, sizeof(r), "%zu", len);
10111011
if(ssl_push_certinfo(data, certnum, "RSA Public Key", r))
10121012
return 1;
10131013
}

0 commit comments

Comments
 (0)