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:
Fred Kiefer 2003-06-17 13:34:38 +00:00
parent 39cb6f8e2d
commit 0920733b8d

View file

@ -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;
}