diff options
author | Ran Benita <ran234@gmail.com> | 2012-10-03 20:08:13 +0200 |
---|---|---|
committer | Ran Benita <ran234@gmail.com> | 2012-10-06 21:41:58 +0200 |
commit | fe1faa143e6a5d1dd423a33f7bc0aaf792b8fc40 (patch) | |
tree | aae817811aa189f3d4396bac75f0861e9eb3f074 /src/xkbcomp/keymap.c | |
parent | 1c880887666f84e08ea1752bb8a5ab2a7bf1d8a0 (diff) | |
download | libxkbcommon-fe1faa143e6a5d1dd423a33f7bc0aaf792b8fc40.tar.gz libxkbcommon-fe1faa143e6a5d1dd423a33f7bc0aaf792b8fc40.tar.bz2 libxkbcommon-fe1faa143e6a5d1dd423a33f7bc0aaf792b8fc40.zip |
Use our types instead of int/uint32_t in a few places
Signed-off-by: Ran Benita <ran234@gmail.com>
Diffstat (limited to 'src/xkbcomp/keymap.c')
-rw-r--r-- | src/xkbcomp/keymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xkbcomp/keymap.c b/src/xkbcomp/keymap.c index 611d313..8c3cf26 100644 --- a/src/xkbcomp/keymap.c +++ b/src/xkbcomp/keymap.c @@ -96,7 +96,7 @@ FindInterpForKey(struct xkb_keymap *keymap, const struct xkb_key *key, * such that when we find a match we return immediately. */ darray_foreach(interp, keymap->sym_interpret) { - uint32_t mods; + xkb_mod_mask_t mods; bool found; if ((num_syms > 1 || interp->sym != syms[0]) && |