From d515fb5bcfee1be90e5e5bfc8cd955ecaa10f24f Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Tue, 16 Apr 2024 21:14:35 -0500 Subject: [PATCH] Debug CI failure on Github Signed-off-by: Quincey Koziol --- src/H5TSint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/H5TSint.c b/src/H5TSint.c index e7b3100ab4b..234ef05ccba 100644 --- a/src/H5TSint.c +++ b/src/H5TSint.c @@ -458,7 +458,7 @@ H5TS_get_api_ctx_ptr(void) /* Check if info for thread has been created */ if (H5_UNLIKELY(H5TS_key_get_value(H5TS_thrd_info_key_g, (void **)&tinfo_node) < 0)) HGOTO_DONE(NULL); - fprintf(stderr, "%s:%u tinfo_node = %p\n", __func__i, tinfo_node); + fprintf(stderr, "%s:%u tinfo_node = %p\n", __func__, __LINE__, tinfo_node); if (NULL == tinfo_node) /* Create thread info for this thread */ if (H5_UNLIKELY(NULL == (tinfo_node = H5TS__tinfo_create())))