summaryrefslogtreecommitdiff
path: root/Userland/tar.cpp
diff options
context:
space:
mode:
authorasynts <asynts@gmail.com>2020-10-25 17:46:16 +0100
committerAndreas Kling <kling@serenityos.org>2020-10-25 18:52:51 +0100
commit1254cbbd0bb4f7220534fb7c99074027e4aa00de (patch)
tree1977b2f2de3737a6183f1a657e8d28c7a0b779c9 /Userland/tar.cpp
parenta5f5c3fd33ebc91e827e0b0ab94d438cc82ffff4 (diff)
downloadserenity-1254cbbd0bb4f7220534fb7c99074027e4aa00de.zip
AK: Eradicate calls to warn().
Diffstat (limited to 'Userland/tar.cpp')
-rw-r--r--Userland/tar.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/tar.cpp b/Userland/tar.cpp
index 926b3691f0..75eb635da9 100644
--- a/Userland/tar.cpp
+++ b/Userland/tar.cpp
@@ -80,7 +80,7 @@ int main(int argc, char** argv)
InputStream& gzip_input_stream = gzip_stream;
Tar::TarStream tar_stream((gzip) ? gzip_input_stream : file_input_stream);
if (!tar_stream.valid()) {
- warn() << "the provided file is not a well-formatted ustar file";
+ warnln("the provided file is not a well-formatted ustar file");
return 1;
}
for (; !tar_stream.finished(); tar_stream.advance()) {