mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:17:44 +00:00
ls: Make 64 bit clean
This commit is contained in:
parent
10df91b424
commit
570bb81a31
1 changed files with 1 additions and 1 deletions
|
@ -310,7 +310,7 @@ static bool print_filesystem_object(const String& path, const String& name, cons
|
||||||
printf(" %4u,%4u ", major(st.st_rdev), minor(st.st_rdev));
|
printf(" %4u,%4u ", major(st.st_rdev), minor(st.st_rdev));
|
||||||
} else {
|
} else {
|
||||||
if (flag_human_readable) {
|
if (flag_human_readable) {
|
||||||
printf(" %10s ", human_readable_size((size_t)st.st_size).characters());
|
printf(" %10s ", human_readable_size(st.st_size).characters());
|
||||||
} else {
|
} else {
|
||||||
printf(" %10lld ", st.st_size);
|
printf(" %10lld ", st.st_size);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue