Skip to content

Commit

Permalink
Fixed: Minor comparison warning
Browse files Browse the repository at this point in the history
Comparing signed and unsigned integers.
  • Loading branch information
skyjake committed Aug 25, 2012
1 parent c156dce commit eeb17e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/plugins/dehread/src/dehreader.cpp
Expand Up @@ -130,7 +130,7 @@ class DehReader

bool atEnd()
{
return (pos >= patch.size() || patch.at(pos) == '\0');
return (size_t(pos) >= patch.size() || patch.at(pos) == '\0');
}

void advance()
Expand Down

0 comments on commit eeb17e2

Please sign in to comment.