From e51396944c5dafd17829186a19e286d673ecd86c Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Wed, 19 Jun 2013 09:21:18 +0100 Subject: [PATCH] Fix warning: comparison between signed and unsigned integer expressions Signed-off-by: Chris Michael --- src/bin/tycat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/tycat.c b/src/bin/tycat.c index b620e4df..9ef2222c 100644 --- a/src/bin/tycat.c +++ b/src/bin/tycat.c @@ -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; }