mirror of https://github.com/MidnightCommander/mc
* extfs/uzip.in (print_file): Use %8s instead of %8d
printf() pattern to print really big "realsize"
This commit is contained in:
parent
1921894119
commit
9395167ddd
|
@ -341,7 +341,7 @@ sub print_file {
|
|||
if ($platform ne 'unx') {
|
||||
$perms = ($filename =~ /\/$/ ? 'drwxr-xr-x' : '-rw-r--r--');
|
||||
}
|
||||
printf "%-10s 1 %-8d %-8d %8d %s/%s/%s %s:%s:%s %s", $perms, $<,
|
||||
printf "%-10s 1 %-8d %-8d %8s %s/%s/%s %s:%s:%s %s", $perms, $<,
|
||||
$(, $realsize, $mon, $day, $year, $hours, $mins, $secs, $filename;
|
||||
if ($platform eq 'unx' && $perms =~ /^l/) {
|
||||
my $linkdest = &get_link_destination($filename);
|
||||
|
|
Loading…
Reference in New Issue