summaryrefslogtreecommitdiff
path: root/src/xkbcomp/ast.h
diff options
context:
space:
mode:
authorRan Benita <ran234@gmail.com>2014-02-07 19:28:48 +0200
committerRan Benita <ran234@gmail.com>2014-02-08 00:10:56 +0200
commit6f2df7df8c5db6271d11df0b72457bad350b4fa3 (patch)
tree60d604c663b35a174879cd6eff284a3dfc47a34b /src/xkbcomp/ast.h
parente9e3993221a1f94be397bccc470a27a8dd41e0cc (diff)
downloadxorg-lib-libxkbcommon-6f2df7df8c5db6271d11df0b72457bad350b4fa3.tar.gz
ast: make symsMapIndex unsigned
It doesn't need to be signed. Signed-off-by: Ran Benita <ran234@gmail.com>
Diffstat (limited to 'src/xkbcomp/ast.h')
-rw-r--r--src/xkbcomp/ast.h2
1 files changed, 1 insertions, 1 deletions
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;