[7532] Avoid warnings at use size_t with printf fromat strings. Author: VladimirMangos

--HG--
branch : trunk
This commit is contained in:
megamage
2009-03-24 17:38:14 -06:00
parent cda206aacc
commit 941e5b9dbd
12 changed files with 43 additions and 33 deletions

View File

@@ -97,7 +97,7 @@ bool SqlQueryHolder::SetQuery(size_t index, const char *sql)
{
if(m_queries.size() <= index)
{
sLog.outError("Query index (%u) out of range (size: %u) for query: %s",index,m_queries.size(),sql);
sLog.outError("Query index (%u) out of range (size: %u) for query: %s",index,(uint32)m_queries.size(),sql);
return false;
}