Procházet zdrojové kódy

Fix build break

master
Arun Prakash Jana před 5 roky
rodič
revize
5c336fb7da
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: A75979F35C080412
1 změnil soubory, kde provedl 2 přidání a 3 odebrání
  1. +2
    -3
      src/nnn.c

+ 2
- 3
src/nnn.c Zobrazit soubor

@@ -182,7 +182,6 @@

/* TYPE DEFINITIONS */
typedef unsigned long ulong;
typedef unsigned long long ull;
typedef unsigned int uint;
typedef unsigned char uchar;
typedef unsigned short ushort;
@@ -3929,10 +3928,10 @@ static void redraw(char *path)
xstrlcpy(buf, coolsize(dir_blocks << blk_shift), 12);
c = cfg.apparentsz ? 'a' : 'd';

mvprintw(lastln, 0, "%d/%d (%d) %cu:%s free:%s files:%lu %lluB %s",
mvprintw(lastln, 0, "%d/%d (%d) %cu:%s free:%s files:%lu %lldB %s",
cur + 1, ndents, nselected, c, buf,
coolsize(get_fs_info(path, FREE)), num_files,
(ull)(pent->blocks << blk_shift), ptr);
(ll)pent->blocks << blk_shift, ptr);
} else { /* light or detail mode */
/* Show filename as it may be truncated in directory listing */
/* Get the unescaped file name */


Načítá se…
Zrušit
Uložit