From 1f1383fe1eb23c10f93e8d280eeef73aa26b1318 Mon Sep 17 00:00:00 2001 From: mjz19910 Date: Tue, 4 Jan 2022 16:46:47 -0700 Subject: [PATCH] unzip: Remove useless .characters() calls --- Userland/Utilities/unzip.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 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; }