From: Ran Benita Date: Fri, 7 Feb 2014 17:28:48 +0000 (+0200) Subject: ast: make symsMapIndex unsigned X-Git-Tag: xkbcommon-0.4.1~83 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6f2df7df8c5db6271d11df0b72457bad350b4fa3;p=platform%2Fupstream%2Flibxkbcommon.git ast: make symsMapIndex unsigned It doesn't need to be signed. Signed-off-by: Ran Benita --- diff --git a/src/xkbcomp/ast.h b/src/xkbcomp/ast.h index 489b331..d6b1109 100644 --- a/src/xkbcomp/ast.h +++ b/src/xkbcomp/ast.h @@ -226,7 +226,7 @@ typedef struct { typedef struct { ExprCommon expr; darray(xkb_keysym_t) syms; - darray(int) symsMapIndex; + darray(unsigned int) symsMapIndex; darray(unsigned int) symsNumEntries; } ExprKeysymList;