diff options
author | Josh Triplett <josh@freedesktop.org> | 2007-01-27 01:00:23 -0800 |
---|---|---|
committer | Josh Triplett <josh@freedesktop.org> | 2007-01-27 01:00:23 -0800 |
commit | c2f0f35a3fa25ab66e07e5eec3634df4d0432230 (patch) | |
tree | e09139170ee920e406e7873cf25ea401674a4c74 /token.h | |
parent | Enhance debug information. (diff) | |
download | sparse-c2f0f35a3fa25ab66e07e5eec3634df4d0432230.tar.gz sparse-c2f0f35a3fa25ab66e07e5eec3634df4d0432230.tar.bz2 sparse-c2f0f35a3fa25ab66e07e5eec3634df4d0432230.zip |
Coding style fix: in a pointer type, * goes with the name, not the type.
Signed-off-by: Josh Triplett <josh@freedesktop.org>
Diffstat (limited to 'token.h')
-rw-r--r-- | token.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -170,7 +170,7 @@ struct token { static inline struct token *containing_token(struct token **p) { - void *addr = (char*)p - ((char*)&((struct token *)0)->next - (char*)0); + void *addr = (char *)p - ((char *)&((struct token *)0)->next - (char *)0); return addr; } |