1
0
mirror of https://github.com/MidnightCommander/mc synced 2025-04-03 05:32:56 +03:00

* cmd.c (dirsizes_cmd): Don't cast st_size to long - use off_t

instead, since off_t can be longer.
Reported by Radovan Bukoci <rado@autoparts.sk>
This commit is contained in:
Pavel Roskin 2001-09-01 07:51:14 +00:00
parent 28ed7f82c0
commit f2547b3cbd
2 changed files with 7 additions and 1 deletions

@ -1,3 +1,9 @@
2001-08-27 Pavel Roskin <proski@gnu.org>
* cmd.c (dirsizes_cmd): Don't cast st_size to long - use off_t
instead, since off_t can be longer.
Reported by Radovan Bukoci <rado@autoparts.sk>
2001-08-30 David Martin <dmartina@excite.es>
* info.c (info_show_info): Use size_trunc_len() instead of

@ -1420,7 +1420,7 @@ dirsizes_cmd (void)
strcmp (panel->dir.list [i].fname, "..") != 0) {
total = 0.0l;
compute_dir_size (panel->dir.list [i].fname, &marked, &total);
panel->dir.list [i].buf.st_size = (long)total;
panel->dir.list [i].buf.st_size = (off_t) total;
panel->dir.list [i].f.dir_size_computed = 1;
}