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 /linearize.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 'linearize.h')
-rw-r--r--linearize.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/linearize.h b/linearize.h
index e5ed1f8..3ff993f 100644
--- a/linearize.h
+++ b/linearize.h
@@ -287,7 +287,7 @@ static inline int has_use_list(pseudo_t p)
return (p && p->type != PSEUDO_VOID && p->type != PSEUDO_VAL);
}
-static inline struct pseudo_user* alloc_pseudo_user(struct instruction *insn, pseudo_t *pp)
+static inline struct pseudo_user *alloc_pseudo_user(struct instruction *insn, pseudo_t *pp)
{
struct pseudo_user *user = __alloc_pseudo_user(0);
user->userp = pp;