Skip to content

Commit d06cccd

Browse files
committed
String formatting inconsistancies fixed
1 parent cfe63c3 commit d06cccd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/wh_test_common.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@
5151
#ifdef WOLFHSM_CFG_TEST_VERBOSE
5252
#if !defined(__CCRH__)
5353
#define WH_TEST_DEBUG_PRINT(fmt, ...) \
54-
WOLFHSM_CFG_PRINTF("[%s:%d] " fmt, __func__, __LINE__, ##__VA_ARGS__)
54+
WOLFHSM_CFG_PRINTF("[%s:%d]: " fmt, __func__, __LINE__, ##__VA_ARGS__)
5555
#else
5656
#define WH_TEST_DEBUG_PRINT(...) WH_TEST_DEBUG_PRINT2(__VA_ARGS__, "")
5757
#define WH_TEST_DEBUG_PRINT2(fmt, ...) \
58-
WOLFHSM_CFG_PRINTF("[%s:%d] " fmt, __func__, __LINE__, ##__VA_ARGS__)
58+
WOLFHSM_CFG_PRINTF("[%s:%d]: " fmt, __func__, __LINE__, ##__VA_ARGS__)
5959
#endif
6060
#else
6161
#define WH_TEST_DEBUG_PRINT(...) \

0 commit comments

Comments
 (0)