xev: Changes to 'master'

Alan Coopersmith alanc at kemper.freedesktop.org
Sat Jan 19 08:35:56 PST 2013


 xev.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6731b622587e83572452c96423195528579fd98d
Author: Alan Coopersmith <alan.coopersmith at oracle.com>
Date:   Mon Jan 14 23:21:43 2013 -0800

    Fix clang warnings about converting size_t to int and back again
    
    xev.c:909:15: warning: implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' [-Wshorten-64-to-32]
        int len = strlen (s);
            ~~~   ^~~~~~~~~~
    xev.c:917:34: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
        if (strncmp (s, "notuseful", len) == 0) return (NotUseful);
            ~~~~~~~                  ^~~
    xev.c:918:35: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
        if (strncmp (s, "whenmapped", len) == 0) return (WhenMapped);
            ~~~~~~~                   ^~~
    xev.c:919:31: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
        if (strncmp (s, "always", len) == 0) return (Always);
            ~~~~~~~               ^~~
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith at oracle.com>
    Reviewed-by: Peter Hutterer <peter.hutterer at who-t.net>



More information about the xorg-commit mailing list