From: Arun Prakash Jana Date: Fri, 1 Nov 2019 10:44:24 +0000 (+0530) Subject: Fix build break X-Git-Tag: v2.8~115 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=5c336fb7da1b934e38eb8c939180607fc001bf0f;p=nnn.git Fix build break --- diff --git a/src/nnn.c b/src/nnn.c index d5a407eb..217fd6e0 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -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 */