conf.c: remove extra indentation

Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Andrew Gregory 2014-03-24 09:59:43 -04:00 committed by Allan McRae
parent b0dc547fcb
commit b26432dbdb
1 changed files with 3 additions and 4 deletions

View File

@ -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;