Explorar el Código

Revert "Fix compilation warning"

This reverts commit 30fdb6ff11.
master
Arun Prakash Jana hace 6 años
padre
commit
90e8b81c3e
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      nnn.c

+ 2
- 2
nnn.c Ver fichero

@@ -1465,9 +1465,9 @@ coolsize(off_t size)
if (i < 3 && rem >= frac) { size++; rem = 0; }

if (i > 0)
snprintf(size_buf, 12, "%lu.%0*i%c", size, fdig, rem, U[i]);
snprintf(size_buf, 12, "%" PRId64 ".%0*i%c", size, fdig, rem, U[i]);
else
snprintf(size_buf, 12, "%lu%c", size, U[i]);
snprintf(size_buf, 12, "%" PRId64 "%c", size, U[i]);

return size_buf;
}


Cargando…
Cancelar
Guardar