Kaynağa Gözat

Do not show mantissa for absolute sizes

master
Arun Prakash Jana 5 yıl önce
ebeveyn
işleme
a25e878dfc
Veri tabanında bu imza için bilinen anahtar bulunamadı GPG Anahtar Kimliği: A75979F35C080412
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. +1
    -1
      src/nnn.c

+ 1
- 1
src/nnn.c Dosyayı Görüntüle

@@ -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] = '.';



Yükleniyor…
İptal
Kaydet