index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Andrew Gregory <andrew.gregory.8@gmail.com> | 2014-03-24 09:59:43 -0400 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2014-03-27 15:16:52 +1000 |
commit | b26432dbdbe7afdaa0743f6509cc69e1c7007981 (patch) | |
tree | 707ea459c25d61431aeead5f18c367f5867983cc | |
parent | b0dc547fcbc3e4b0116f8982d500635ebdeb506c (diff) |
-rw-r--r-- | src/pacman/conf.c | 7 |
diff --git a/src/pacman/conf.c b/src/pacman/conf.c index f75f3a76..0e483f77 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; |