[pacman-dev] [PATCH] conf.c: remove extra indentation

Andrew Gregory andrew.gregory.8 at gmail.com
Mon Mar 24 09:59:43 EDT 2014


Signed-off-by: Andrew Gregory <andrew.gregory.8 at gmail.com>
---
 src/pacman/conf.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/pacman/conf.c b/src/pacman/conf.c
index f75f3a7..0e483f7 100644
--- a/src/pacman/conf.c
+++ b/src/pacman/conf.c
@@ -93,10 +93,9 @@ config_t *config_new(void)
 {
 	config_t *newconfig = calloc(1, sizeof(config_t));
 	if(!newconfig) {
-			pm_printf(ALPM_LOG_ERROR,
-					_("malloc failure: could not allocate %zd bytes\n"),
-					sizeof(config_t));
-			return NULL;
+		pm_printf(ALPM_LOG_ERROR,
+				_("malloc failure: could not allocate %zd bytes\n"), sizeof(config_t));
+		return NULL;
 	}
 	/* defaults which may get overridden later */
 	newconfig->op = PM_OP_MAIN;
-- 
1.9.0



More information about the pacman-dev mailing list