Fix musl-gcc compile warnings

This commit is contained in:
Arun Prakash Jana 2021-05-11 00:05:02 +05:30
parent b44d2c5071
commit 9b6e7e86bc
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 2 additions and 2 deletions

View File

@ -5613,9 +5613,9 @@ static void statusbar(char *path)
xstrsncpy(buf, coolsize(dir_blocks << blk_shift), 12);
printw("%cu:%s free:%s files:%lu %lluB %s\n",
printw("%cu:%s free:%s files:%llu %lluB %s\n",
(cfg.apparentsz ? 'a' : 'd'), buf, coolsize(get_fs_info(path, FREE)),
num_files, (blkcnt_t)pent->blocks << blk_shift, ptr);
num_files, (ulong_t)pent->blocks << blk_shift, ptr);
} else { /* light or detail mode */
char sort[] = "\0\0\0\0\0";