mirror of
https://github.com/MidnightCommander/mc
synced 2025-04-03 21:52:58 +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:
parent
28ed7f82c0
commit
f2547b3cbd
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user