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/pacman/sync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pacman/sync.c') diff --git a/src/pacman/sync.c b/src/pacman/sync.c index 46091863..215497f6 100644 --- a/src/pacman/sync.c +++ b/src/pacman/sync.c @@ -230,7 +230,7 @@ static int sync_cleancache(int level) } if(level <= 1) { - static const char * const glob_skips[] = { + static const char *const glob_skips[] = { /* skip signature files - they are removed with their package file */ "*.sig", /* skip package database within the cache directory */ -- cgit v1.2.3-24-g4f1b