diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2019-05-09 18:45:47 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2019-05-22 08:44:19 +0530 |
commit | 7cb2d22e9f4bd5c5ac0a1fd42f78dddf82441073 (patch) | |
tree | 77f6e3aafed34fdee32205cba4af557033cdd720 | |
parent | 22973733066c5939ed6c41992c907ff5f09b7923 (diff) | |
download | nnn-7cb2d22e9f4bd5c5ac0a1fd42f78dddf82441073.tar.gz |
Fix build break
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | src/nnn.c | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -18,7 +18,7 @@ else LDLIBS_CURSES ?= -lncurses endif -CFLAGS += -Wall -Wextra -Wno-unused-parameter -Wno-format-truncation +CFLAGS += -Wall -Wextra -Wno-unused-parameter CFLAGS += $(CFLAGS_OPTIMIZATION) CFLAGS += $(CFLAGS_CURSES) @@ -2019,7 +2019,7 @@ static char *coolsize(off_t size) { static const char * const U = "BKMGTPEZY"; static char size_buf[12]; /* Buffer to hold human readable size */ - off_t rem; + static off_t rem; int i; rem = i = 0; @@ -2067,9 +2067,9 @@ static char *coolsize(off_t size) } if (i > 0 && i < 6) - snprintf(size_buf, 12, "%lu.%0*lu%c", size, i, rem, U[i]); + snprintf(size_buf, 12, "%lu.%0*lu%c", (ulong)size, i, (ulong)rem, U[i]); else - snprintf(size_buf, 12, "%lu%c", size, U[i]); + snprintf(size_buf, 12, "%lu%c", (ulong)size, U[i]); return size_buf; } |