Explorar el Código

Fix fprint format args (#410)

Since 75061367be we only need to fill one %c
master
Maxim Baz Mischievous Meerkat hace 5 años
padre
commit
7b06480147
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/nnn.c

+ 1
- 1
src/nnn.c Ver fichero

@@ -3513,7 +3513,7 @@ static void show_help(const char *path)
if (*end == '\n') {
snprintf(g_buf, CMD_LEN_MAX, "%*c%.*s",
xchartohex(*start), ' ', (int)(end - start), start + 1);
fprintf(fp, g_buf, ' ', ' ');
fprintf(fp, g_buf, ' ');
start = end + 1;
}



Cargando…
Cancelar
Guardar