summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/params_api_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/params_api_test.c b/test/params_api_test.c
index 38d6913ec5..c1dbdad129 100644
--- a/test/params_api_test.c
+++ b/test/params_api_test.c
@@ -390,8 +390,8 @@ static int test_param_size_t(int n)
static int test_param_time_t(int n)
{
time_t in, out;
- unsigned char buf[MAX_LEN], cmp[sizeof(size_t)];
- const size_t len = raw_values[n].len >= sizeof(size_t)
+ unsigned char buf[MAX_LEN], cmp[sizeof(time_t)];
+ const size_t len = raw_values[n].len >= sizeof(time_t)
? sizeof(time_t) : raw_values[n].len;
OSSL_PARAM param = OSSL_PARAM_time_t("a", NULL);