Fix warning: comparison between signed and unsigned integer expressions

Signed-off-by: Chris Michael <devilhorns@comcast.net>
This commit is contained in:
Chris Michael 2013-06-19 09:21:18 +01:00
parent cf2eb65f98
commit e51396944c
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ main(int argc, char **argv)
ret = 1;
goto shutdown;
}
if (!width || tw > width) maxw = width;
if (!width || tw > (int)width) maxw = width;
maxh = height;
}