mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-26 20:26:53 +00:00
AK: Eradicate calls to warn().
This commit is contained in:
parent
a5f5c3fd33
commit
1254cbbd0b
Notes:
sideshowbarker
2024-07-19 01:43:46 +09:00
Author: https://github.com/asynts
Commit: 1254cbbd0b
Pull-request: https://github.com/SerenityOS/serenity/pull/3848
9 changed files with 42 additions and 53 deletions
|
@ -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()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue