summaryrefslogtreecommitdiff
path: root/src/xkbcomp/ast.h
diff options
context:
space:
mode:
authorRan Benita <ran234@gmail.com>2013-12-01 10:45:52 +0200
committerRan Benita <ran234@gmail.com>2013-12-01 11:20:35 +0200
commit068016e4dd9a7463e5a74d0cec7612c2a9bdd6c0 (patch)
tree59571d84ef241eca00aff493ce80acdf7b7b1f61 /src/xkbcomp/ast.h
parent4a7bfb68442e1e0d4f4af1f7fc0729a8e921106a (diff)
downloadxorg-lib-libxkbcommon-068016e4dd9a7463e5a74d0cec7612c2a9bdd6c0.tar.gz
parser, symbols: drop unnecessary casts
It's casted into ExprDef and then uncasted for no reason. 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 3e9f517..c63b796 100644
--- a/src/xkbcomp/ast.h
+++ b/src/xkbcomp/ast.h
@@ -233,7 +233,7 @@ typedef struct {
ParseCommon common;
enum merge_mode merge;
xkb_atom_t keyName;
- ExprDef *symbols;
+ VarDef *symbols;
} SymbolsDef;
typedef struct {