Fixed warning.

This commit is contained in:
Бранимир Караџић
2024-06-11 17:54:48 -07:00
parent d171a0f264
commit 0ec634e8fd

View File

@@ -134,7 +134,7 @@ namespace bx
if (NULL != _name)
{
BX_WARN(strLen(_name) < BX_COUNTOF(m_name)-1, "Truncating thread name.");
BX_WARN(strLen(_name) < int32_t(BX_COUNTOF(m_name) )-1, "Truncating thread name.");
strCopy(m_name, BX_COUNTOF(m_name), _name);
}
else