Explorar el Código

Minor reformat

master
Arun Prakash Jana hace 4 años
padre
commit
2fbb6ae35f
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: A75979F35C080412
Se han modificado 1 ficheros con 2 adiciones y 5 borrados
  1. +2
    -5
      src/nnn.c

+ 2
- 5
src/nnn.c Ver fichero

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


Cargando…
Cancelar
Guardar