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 /ptrlist.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 'ptrlist.h')
-rw-r--r--ptrlist.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ptrlist.h b/ptrlist.h
index 8a58bad..dae0906 100644
--- a/ptrlist.h
+++ b/ptrlist.h
@@ -56,7 +56,7 @@ extern int linearize_ptr_list(struct ptr_list *, void **, int);
MKTYPE(*(list), (CHECK_TYPE(*(list),(entry)),__add_ptr_list((struct ptr_list **)(list), (entry), (tag))))
#define add_ptr_list_notag(list,entry) \
MKTYPE(*(list), (CHECK_TYPE(*(list),(entry)),__add_ptr_list((struct ptr_list **)(list), \
- (void*)((unsigned long)(entry) & ~3UL), \
+ (void *)((unsigned long)(entry) & ~3UL), \
(unsigned long)(entry) & 3)))
#define add_ptr_list(list,entry) \
add_ptr_list_tag(list,entry,0)