diff options
author | asynts <asynts@gmail.com> | 2020-10-25 17:46:16 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-10-25 18:52:51 +0100 |
commit | 1254cbbd0bb4f7220534fb7c99074027e4aa00de (patch) | |
tree | 1977b2f2de3737a6183f1a657e8d28c7a0b779c9 /Userland/tar.cpp | |
parent | a5f5c3fd33ebc91e827e0b0ab94d438cc82ffff4 (diff) | |
download | serenity-1254cbbd0bb4f7220534fb7c99074027e4aa00de.zip |
AK: Eradicate calls to warn().
Diffstat (limited to 'Userland/tar.cpp')
-rw-r--r-- | Userland/tar.cpp | 2 |
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()) { |