summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
authorMicah Saint Germain <micah@lexme.org>2014-12-15 03:01:22 +0100
committerAllan McRae <allan@archlinux.org>2014-12-18 07:32:55 +0100
commita4b23417f9868e14fddf0e6f35e57ba05f029623 (patch)
treefdcd6884abfc77b06294be391f48d8a2d42d3992 /src/util
parentc54af84180d76c1d5c9febdae930dfe5379d7db5 (diff)
downloadpacman-a4b23417f9868e14fddf0e6f35e57ba05f029623.tar.gz
pacman-a4b23417f9868e14fddf0e6f35e57ba05f029623.tar.xz
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 <micah@lexme.org> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'src/util')
-rw-r--r--src/util/pactree.c2
1 files changed, 1 insertions, 1 deletions
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 */