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;
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);
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)
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)