fix(ls64): match types when printing
When building with verbose printing, the types don't match up and the
build fails. Match them up.
Change-Id: I5af968872f4e707c206c4770c0000e14508a4611
Signed-off-by: Boyan Karatotev <boyan.karatotev@arm.com>
diff --git a/tftf/tests/extensions/ls64/test_ls64.c b/tftf/tests/extensions/ls64/test_ls64.c
index 1f2fad7..9b2a203 100644
--- a/tftf/tests/extensions/ls64/test_ls64.c
+++ b/tftf/tests/extensions/ls64/test_ls64.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2024, Arm Limited. All rights reserved.
+ * Copyright (c) 2024-2025, Arm Limited. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
@@ -54,8 +54,8 @@
ls64_load(store_address, ls64_output_buffer);
for (uint8_t i = 0U; i < LS64_ARRAYSIZE; i++) {
- VERBOSE("Input Buffer[%lld]=%lld\n", i, ls64_input_buffer[i]);
- VERBOSE("Output Buffer[%lld]=%lld\n", i, ls64_output_buffer[i]);
+ VERBOSE("Input Buffer[%d]=%lld\n", i, ls64_input_buffer[i]);
+ VERBOSE("Output Buffer[%d]=%lld\n", i, ls64_output_buffer[i]);
if (ls64_input_buffer[i] != ls64_output_buffer[i]) {
return TEST_RESULT_FAIL;