Commit e47f3d06 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Fixed compiler warning related to implicit size_t to int conversion

parent a8ada594
...@@ -124,7 +124,7 @@ bool Debug::isFlagSet(DebugMask mask) ...@@ -124,7 +124,7 @@ bool Debug::isFlagSet(DebugMask mask)
void Debug::printFlags(void) void Debug::printFlags(void)
{ {
int i; int i;
for (i = 0; i < sizeof(s_labels)/sizeof(*s_labels); i++) for (i = 0; i < (int)(sizeof(s_labels)/sizeof(*s_labels)); i++)
{ {
if (s_labels[i].name) if (s_labels[i].name)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment