From 460991a6f0f8165054be2a63386a8d11c38a8485 Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Thu, 25 Apr 2024 15:48:58 -0500 Subject: [PATCH] wolfcrypt/test/test.c: fix invalidPrintfArgType_sint in lms_test_verify_only(). --- wolfcrypt/test/test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfcrypt/test/test.c b/wolfcrypt/test/test.c index 4a32aaf3c..88e1f94fc 100644 --- a/wolfcrypt/test/test.c +++ b/wolfcrypt/test/test.c @@ -38878,7 +38878,7 @@ WOLFSSL_TEST_SUBROUTINE wc_test_ret_t lms_test_verify_only(void) } if (pub_len != HSS_MAX_PUBLIC_KEY_LEN) { - printf("error: LMS pub len %d, expected %d\n", pub_len, + printf("error: LMS pub len %u, expected %d\n", pub_len, HSS_MAX_PUBLIC_KEY_LEN); return WC_TEST_RET_ENC_EC(pub_len); }