aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Triplett <josh@freedesktop.org>2007-01-27 01:00:23 -0800
committerJosh Triplett <josh@freedesktop.org>2007-01-27 01:00:23 -0800
commitc2f0f35a3fa25ab66e07e5eec3634df4d0432230 (patch)
treee09139170ee920e406e7873cf25ea401674a4c74 /token.h
parentEnhance debug information. (diff)
downloadsparse-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/token.h b/token.h
index 1f6ffb3..d60bb46 100644
--- a/token.h
+++ b/token.h
@@ -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;
}