diff options
Diffstat (limited to '')
-rw-r--r-- | src/BlockEntities/SignEntity.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/BlockEntities/SignEntity.cpp b/src/BlockEntities/SignEntity.cpp index df8774377..97fed0f04 100644 --- a/src/BlockEntities/SignEntity.cpp +++ b/src/BlockEntities/SignEntity.cpp @@ -45,7 +45,7 @@ void cSignEntity::SetLines(const AString & a_Line1, const AString & a_Line2, con void cSignEntity::SetLine(int a_Index, const AString & a_Line) { - if ((a_Index < 0) || (a_Index >= ARRAYCOUNT(m_Line))) + if ((a_Index < 0) || (a_Index >= (int)ARRAYCOUNT(m_Line))) { LOGWARNING("%s: setting a non-existent line %d (value \"%s\"", __FUNCTION__, a_Index, a_Line.c_str()); return; @@ -59,7 +59,7 @@ void cSignEntity::SetLine(int a_Index, const AString & a_Line) AString cSignEntity::GetLine(int a_Index) const { - if ((a_Index < 0) || (a_Index >= ARRAYCOUNT(m_Line))) + if ((a_Index < 0) || (a_Index >= (int)ARRAYCOUNT(m_Line))) { LOGWARNING("%s: requesting a non-existent line %d", __FUNCTION__, a_Index); return ""; |