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:
FredKiefer 2003-06-17 13:34:38 +00:00
parent d4d85dcf7b
commit 26164b2258

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