Ver código fonte

Show target file size in list mode

master
Arun Prakash Jana 5 anos atrás
pai
commit
72668069ed
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: A75979F35C080412
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      src/nnn.c

+ 1
- 1
src/nnn.c Ver arquivo

@@ -4369,7 +4369,7 @@ static int dentfill(char *path, struct entry **dents)
if (!flags && dp->d_type == DT_LNK) {
/* Do not add sizes for links */
dentp->mode = (sb.st_mode & ~S_IFMT) | S_IFLNK;
dentp->size = 0;
dentp->size = g_listpath ? sb.st_size : 0;
} else {
dentp->mode = sb.st_mode;
dentp->size = sb.st_size;


Carregando…
Cancelar
Salvar