Fix BIO_printf format warnings

[extended tests]

Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/9479)
This commit is contained in:
Bernd Edlinger 2019-07-29 12:26:06 +02:00
parent 62cc845fc9
commit 35f6fe7ac4
3 changed files with 4 additions and 4 deletions

View file

@ -49,7 +49,7 @@ static void tree_print(BIO *channel,
curr++;
BIO_printf(channel, "Level print after %s\n", str);
BIO_printf(channel, "Printing Up to Level %ld\n",
BIO_printf(channel, "Printing Up to Level %zd\n",
curr - tree->levels);
for (plev = tree->levels; plev != curr; plev++) {
int i;

View file

@ -1703,7 +1703,7 @@ int dtls1_process_record(SSL *s, DTLS1_BITMAP *bitmap)
return 0;
}
OSSL_TRACE_BEGIN(TLS) {
BIO_printf(trc_out, "dec %ld\n", rr->length);
BIO_printf(trc_out, "dec %zd\n", rr->length);
BIO_dump_indent(trc_out, rr->data, rr->length, 4);
} OSSL_TRACE_END(TLS);

View file

@ -122,7 +122,7 @@ static void leaf_check_all(ossl_uintmax_t n, char *value, void *arg)
doall_data->res = 1;
return;
}
TEST_error("Index %zu with value %s not found", n, value);
TEST_error("Index %ju with value %s not found", n, value);
}
static void leaf_delete(ossl_uintmax_t n, char *value, void *arg)
@ -138,7 +138,7 @@ static void leaf_delete(ossl_uintmax_t n, char *value, void *arg)
ossl_sa_char_set(doall_data->sa, n, NULL);
return;
}
TEST_error("Index %zu with value %s not found", n, value);
TEST_error("Index %ju with value %s not found", n, value);
}
static int test_sparse_array_doall(void)