Minor reformat

This commit is contained in:
Arun Prakash Jana 2020-08-02 23:58:52 +05:30
parent b3f2e47173
commit 2fbb6ae35f
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 2 additions and 5 deletions

View File

@ -7026,11 +7026,8 @@ static bool setup_config(void)
/* Set selection file path */
if (!g_state.picker) {
char *env_sel = xgetenv(env_cfg[NNN_SEL], NULL);
if (env_sel)
selpath = xstrdup(env_sel);
else
/* Length of "/.config/nnn/.selection" */
selpath = (char *)malloc(len + 3);
selpath = env_sel ? xstrdup(env_sel)
: (char *)malloc(len + 3); /* Length of "/.config/nnn/.selection" */
if (!selpath) {
xerror();