diff options
Diffstat (limited to 'Userland/Libraries/LibCpp/Tests/parser/strace.cpp')
-rw-r--r-- | Userland/Libraries/LibCpp/Tests/parser/strace.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibCpp/Tests/parser/strace.cpp b/Userland/Libraries/LibCpp/Tests/parser/strace.cpp index 9844198f63..b7f1c2d6d1 100644 --- a/Userland/Libraries/LibCpp/Tests/parser/strace.cpp +++ b/Userland/Libraries/LibCpp/Tests/parser/strace.cpp @@ -20,7 +20,7 @@ int main(int argc, char** argv) Vector<const char*> child_argv; const char* output_filename = nullptr; - auto trace_file = Core::File::standard_error(); + auto trace_file = Core::DeprecatedFile::standard_error(); Core::ArgsParser parser; parser.set_general_help( @@ -32,7 +32,7 @@ int main(int argc, char** argv) parser.parse(argc, argv); if (output_filename != nullptr) { - auto open_result = Core::File::open(output_filename, Core::OpenMode::WriteOnly); + auto open_result = Core::DeprecatedFile::open(output_filename, Core::OpenMode::WriteOnly); if (open_result.is_error()) { outln(stderr, "Failed to open output file: {}", open_result.error()); return 1; |