mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-21 01:37:37 +01:00
Core/DBLayer: Fix gcc warnings related to changes added to QueryResult.h/cpp recently
--HG-- branch : trunk
This commit is contained in:
@@ -133,7 +133,7 @@ void ResultBind::BindResult(uint32& num_rows)
|
||||
//- This is where we prepare the buffer based on metadata
|
||||
uint32 i = 0;
|
||||
MYSQL_FIELD* field;
|
||||
while (field = mysql_fetch_field(m_res))
|
||||
while ((field = mysql_fetch_field(m_res)))
|
||||
{
|
||||
size_t size = SizeForType(field);
|
||||
if (size == 0)
|
||||
|
||||
Reference in New Issue
Block a user