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:
parent
b0dc547fcb
commit
b26432dbdb
1 changed files with 3 additions and 4 deletions
|
@ -93,10 +93,9 @@ config_t *config_new(void)
|
||||||
{
|
{
|
||||||
config_t *newconfig = calloc(1, sizeof(config_t));
|
config_t *newconfig = calloc(1, sizeof(config_t));
|
||||||
if(!newconfig) {
|
if(!newconfig) {
|
||||||
pm_printf(ALPM_LOG_ERROR,
|
pm_printf(ALPM_LOG_ERROR,
|
||||||
_("malloc failure: could not allocate %zd bytes\n"),
|
_("malloc failure: could not allocate %zd bytes\n"), sizeof(config_t));
|
||||||
sizeof(config_t));
|
return NULL;
|
||||||
return NULL;
|
|
||||||
}
|
}
|
||||||
/* defaults which may get overridden later */
|
/* defaults which may get overridden later */
|
||||||
newconfig->op = PM_OP_MAIN;
|
newconfig->op = PM_OP_MAIN;
|
||||||
|
|
Loading…
Add table
Reference in a new issue