summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormjz19910 <matthias291999@gmail.com>2022-01-04 16:46:47 -0700
committerBrian Gianforcaro <b.gianfo@gmail.com>2022-01-04 23:53:46 -0800
commit1f1383fe1eb23c10f93e8d280eeef73aa26b1318 (patch)
tree23e78585915da853bd610591b3a26d697353f08d
parent2351bb2db9ccb592cbece04dcaa68ff293f3ca67 (diff)
downloadserenity-1f1383fe1eb23c10f93e8d280eeef73aa26b1318.zip
unzip: Remove useless .characters() calls
-rw-r--r--Userland/Utilities/unzip.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/unzip.cpp b/Userland/Utilities/unzip.cpp
index d46fe5edfb..9488ec49dd 100644
--- a/Userland/Utilities/unzip.cpp
+++ b/Userland/Utilities/unzip.cpp
@@ -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.
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",
- human_readable_size(map_size_limit).characters(),
+ human_readable_size(map_size_limit),
round_up_to_power_of_two(st.st_size, 16));
return 1;
}