diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2025-02-13 16:13:50 +0200 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2025-02-13 17:30:08 +0200 |
commit | ddbe1ff98159e5eae3153067e3ca6f90c10bceb4 (patch) | |
tree | b9fc2319c2cdd1f96e3cd01b7668c349970dbbbb /indra/llrender/llfontfreetype.cpp | |
parent | 646d0779bd81feefbcf64fc9e8f129b94ce91117 (diff) |
Fix xcode16 build errors
Diffstat (limited to 'indra/llrender/llfontfreetype.cpp')
-rw-r--r-- | indra/llrender/llfontfreetype.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llrender/llfontfreetype.cpp b/indra/llrender/llfontfreetype.cpp index 1f14d82bf1..c8cfe88ec3 100644 --- a/indra/llrender/llfontfreetype.cpp +++ b/indra/llrender/llfontfreetype.cpp @@ -715,7 +715,7 @@ void LLFontFreetype::renderGlyph(EFontGlyphType bitmap_type, U32 glyph_index, ll if (error == FT_Err_Out_Of_Memory) { LLError::LLUserWarningMsg::showOutOfMemory(); - LL_ERRS() << "Out of memory loading glyph for character " << wch << LL_ENDL; + LL_ERRS() << "Out of memory loading glyph for character " << static_cast<unsigned int>(wch) << LL_ENDL; } std::string message = llformat( |