1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:17:34 +00:00

AK: Eradicate the uses of out().

This commit is contained in:
asynts 2020-10-23 18:37:35 +02:00 committed by Andreas Kling
parent 61e73b1a7b
commit 88bca152c9
7 changed files with 475 additions and 259 deletions

View file

@ -85,7 +85,7 @@ int main(int argc, char** argv)
}
for (; !tar_stream.finished(); tar_stream.advance()) {
if (list || verbose)
out() << tar_stream.header().file_name();
outln("{}", tar_stream.header().file_name());
if (extract) {
Tar::TarFileStream file_stream = tar_stream.file_contents();