aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@home.transmeta.com>2003-03-30 22:02:01 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 20:59:54 -0700
commitc6555e8346ccaadb00d1fbe1e2ac83c452f4750b (patch)
tree33be2fcc1372be8604b375ff94f2d2e2c7f89b96 /expression.h
parentIntroduce a "struct position", and have the different types refer (diff)
downloadsparse-c6555e8346ccaadb00d1fbe1e2ac83c452f4750b.tar.gz
sparse-c6555e8346ccaadb00d1fbe1e2ac83c452f4750b.tar.bz2
sparse-c6555e8346ccaadb00d1fbe1e2ac83c452f4750b.zip
A structure member is just an identifier, not a random token.
Diffstat (limited to 'expression.h')
-rw-r--r--expression.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/expression.h b/expression.h
index 1897153..f7be851 100644
--- a/expression.h
+++ b/expression.h
@@ -60,7 +60,7 @@ struct expression {
// EXPR_DEREF
struct deref_arg {
struct expression *deref;
- struct token *member;
+ struct ident *member;
};
// EXPR_CAST and EXPR_SIZEOF
struct cast_arg {