summaryrefslogtreecommitdiff
path: root/Userland/Utilities/lzcat.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Utilities/lzcat.cpp')
-rw-r--r--Userland/Utilities/lzcat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/lzcat.cpp b/Userland/Utilities/lzcat.cpp
index cc9d6ba936..320e814f9e 100644
--- a/Userland/Utilities/lzcat.cpp
+++ b/Userland/Utilities/lzcat.cpp
@@ -22,7 +22,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
args_parser.parse(arguments);
auto file = TRY(Core::File::open_file_or_standard_stream(filename, Core::File::OpenMode::Read));
- auto buffered_file = TRY(Core::BufferedFile::create(move(file)));
+ auto buffered_file = TRY(Core::InputBufferedFile::create(move(file)));
auto stream = TRY(Compress::LzmaDecompressor::create_from_container(move(buffered_file)));
// Arbitrarily chosen buffer size.