mirror of
https://github.com/gnustep/libs-back.git
synced 2025-04-22 15:31:14 +00:00
Removed compiler warnings about signed/unsigned comparision.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@16943 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
39cb6f8e2d
commit
0920733b8d
1 changed files with 1 additions and 1 deletions
|
@ -914,7 +914,7 @@ static Region emptyRegion;
|
|||
{
|
||||
ll.y = y;
|
||||
}
|
||||
if (ur.y > y + height)
|
||||
if (ur.y > y + (int)height)
|
||||
{
|
||||
ur.y = y + height;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue