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:
parent
61e73b1a7b
commit
88bca152c9
7 changed files with 475 additions and 259 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue