From 49d99be1808f5f0d578ebd5acbb05124f8f5b697 Mon Sep 17 00:00:00 2001 From: Stephen Miller Date: Wed, 25 Sep 2024 15:44:22 -0500 Subject: [PATCH] clang --- src/core/linker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/linker.cpp b/src/core/linker.cpp index de168fade..6ea2bc394 100644 --- a/src/core/linker.cpp +++ b/src/core/linker.cpp @@ -365,7 +365,7 @@ void Linker::InitTlsForThread(bool is_primary) { if (!addr_out) { // TODO: Properly log thread handle on assert. auto pth_id = pthread_self(); - ASSERT_MSG(addr_out, "Cannot allocate TLS block of size = {:#x} for thread {}", + ASSERT_MSG(addr_out, "Cannot allocate TLS block of size = {:#x} for thread {}", total_tls_size, pth_id); } #endif