Explorar el Código

Do not show mantissa for absolute sizes

master
Arun Prakash Jana hace 5 años
padre
commit
a25e878dfc
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 1 adiciones y 1 borrados
  1. +1
    -1
      src/nnn.c

+ 1
- 1
src/nnn.c Ver fichero

@@ -2178,7 +2178,7 @@ static char *coolsize(off_t size)
rem /= 10;
}

if (i > 0 && i < 6) {
if (i > 0 && i < 6 && rem) {
ret = xstrlcpy(size_buf, xitoa(size), 11);
size_buf[ret - 1] = '.';



Cargando…
Cancelar
Guardar