Преглед изворни кода

Remove redundant newline

master
Arun Prakash Jana пре 6 година
родитељ
комит
7ec54342ae
No known key found for this signature in database GPG Key ID: A75979F35C080412
1 измењених фајлова са 2 додато и 4 уклоњено
  1. +2
    -4
      src/nnn.c

+ 2
- 4
src/nnn.c Прегледај датотеку

@@ -348,7 +348,6 @@ static char g_tmpfpath[TMP_LEN_MAX] __attribute__ ((aligned));
#define LOCKER 5 #define LOCKER 5
#define CMATRIX 6 #define CMATRIX 6
#define NLAUNCH 7 #define NLAUNCH 7
#define UNKNOWN 8


/* Utilities to open files, run actions */ /* Utilities to open files, run actions */
static char * const utils[] = { static char * const utils[] = {
@@ -372,7 +371,6 @@ static char * const utils[] = {
#endif #endif
"cmatrix", "cmatrix",
"nlaunch", "nlaunch",
"UNKNOWN"
}; };


#ifdef __linux__ #ifdef __linux__
@@ -3364,7 +3362,7 @@ static void redraw(char *path)
xstrlcpy(buf, coolsize(dir_blocks << BLK_SHIFT), 12); xstrlcpy(buf, coolsize(dir_blocks << BLK_SHIFT), 12);
c = cfg.apparentsz ? 'a' : 'd'; c = cfg.apparentsz ? 'a' : 'd';


mvprintw(lastln, 0, "%d/%d (%d) %s%cu:%s (%lu files) free:%s %s\n",
mvprintw(lastln, 0, "%d/%d (%d) %s%cu:%s (%lu files) free:%s %s",
cur + 1, ndents, nselected, selmode, c, buf, num_files, cur + 1, ndents, nselected, selmode, c, buf, num_files,
coolsize(get_fs_info(path, FREE)), ptr); coolsize(get_fs_info(path, FREE)), ptr);
} else { /* light or detail mode */ } else { /* light or detail mode */
@@ -3375,7 +3373,7 @@ static void redraw(char *path)
/* Timestamp */ /* Timestamp */
strftime(buf, 18, "%Y/%b/%d %R", localtime(&pent->t)); strftime(buf, 18, "%Y/%b/%d %R", localtime(&pent->t));


mvprintw(lastln, 0, "%d/%d (%d) %s%s%s %s %s %s [%s]\n",
mvprintw(lastln, 0, "%d/%d (%d) %s%s%s %s %s %s [%s]",
cur + 1, ndents, nselected, selmode, sort, buf, cur + 1, ndents, nselected, selmode, sort, buf,
get_lsperms(pent->mode), coolsize(pent->size), ptr, base); get_lsperms(pent->mode), coolsize(pent->size), ptr, base);
} }


Loading…
Откажи
Сачувај