diff options
| author | 2017-12-18 00:30:48 +0530 | |
|---|---|---|
| committer | 2017-12-18 00:30:48 +0530 | |
| commit | 8307bc95bd4e0f07e3dd0e3e114e7f0595a95585 (patch) | |
| tree | fcca7b7dc9b49ef571fe12b3b69b1cb481677f39 | |
| parent | ca285807466fdf83a4ce2431ac9277227d6cdbb7 (diff) | |
| download | nnn-8307bc95bd4e0f07e3dd0e3e114e7f0595a95585.tar.gz | |
Fix #64: change printf() to printw()
| -rw-r--r-- | nnn.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1278,7 +1278,7 @@ printent_long(struct entry *ent, int sel, uint namecols) else if (S_ISLNK(ent->mode)) printw("%s%-16.16s @ %s@\n", CURSYM(sel), buf, pname); else if (S_ISSOCK(ent->mode)) - printf("%s%-16.16s = %s=\n", CURSYM(sel), buf, pname); + printw("%s%-16.16s = %s=\n", CURSYM(sel), buf, pname); else if (S_ISFIFO(ent->mode)) printw("%s%-16.16s | %s|\n", CURSYM(sel), buf, pname); else if (S_ISBLK(ent->mode)) |