devilhorns pushed a commit to branch master.

commit e51396944c5dafd17829186a19e286d673ecd86c
Author: Chris Michael <[email protected]>
Date:   Wed Jun 19 09:21:18 2013 +0100

    Fix  warning: comparison between signed and unsigned integer expressions
    
    Signed-off-by: Chris Michael <[email protected]>
---
 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 b620e4d..9ef2222 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;
                }
 

-- 

------------------------------------------------------------------------------
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev

Reply via email to