From a4b23417f9868e14fddf0e6f35e57ba05f029623 Mon Sep 17 00:00:00 2001 From: Micah Saint Germain Date: Sun, 14 Dec 2014 21:01:22 -0500 Subject: Fix pointer declarations to be globally consistent Refactored inconsistent pointer declarations to better improve consistency throughout the pacman codebase which will, in turn, increase readability to the user. Expected format of a pointer declaration: `typename *varname` Signed-off-by: Micah Saint Germain Signed-off-by: Allan McRae --- src/util/pactree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/util/pactree.c') diff --git a/src/util/pactree.c b/src/util/pactree.c index 5c765428..14579e42 100644 --- a/src/util/pactree.c +++ b/src/util/pactree.c @@ -339,7 +339,7 @@ static void cleanup(void) static void print_text(const char *pkg, const char *provision, tdepth *depth, int last) { - const char* tip = ""; + const char *tip = ""; int level = 1; if(!pkg && !provision) { /* not much we can do */ -- cgit v1.2.3-54-g00ecf