clang fix

This commit is contained in:
Stephen Miller 2024-09-25 15:43:19 -05:00
commit 5c52daa987

View file

@ -366,7 +366,7 @@ void Linker::InitTlsForThread(bool is_primary) {
// TODO: Properly log thread handle on assert. // TODO: Properly log thread handle on assert.
auto pth_id = pthread_self(); 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); total_tls_size, pth_id);
} }
#endif #endif
} else { } else {