mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 17:08:12 +00:00
unzip: Remove useless .characters() calls
This commit is contained in:
parent
2351bb2db9
commit
1f1383fe1e
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
||||||
// but it would be significantly faster and less syscall heavy than seek()/read() at every read.
|
// but it would be significantly faster and less syscall heavy than seek()/read() at every read.
|
||||||
if (st.st_size >= map_size_limit) {
|
if (st.st_size >= map_size_limit) {
|
||||||
warnln("unzip warning: Refusing to map file since it is larger than {}, pass '--map-size-limit {}' to get around this",
|
warnln("unzip warning: Refusing to map file since it is larger than {}, pass '--map-size-limit {}' to get around this",
|
||||||
human_readable_size(map_size_limit).characters(),
|
human_readable_size(map_size_limit),
|
||||||
round_up_to_power_of_two(st.st_size, 16));
|
round_up_to_power_of_two(st.st_size, 16));
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue