summaryrefslogtreecommitdiff
path: root/Userland/Utilities/fgrep.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Utilities/fgrep.cpp')
-rw-r--r--Userland/Utilities/fgrep.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/fgrep.cpp b/Userland/Utilities/fgrep.cpp
index 9bbd625df5..8fddc99f96 100644
--- a/Userland/Utilities/fgrep.cpp
+++ b/Userland/Utilities/fgrep.cpp
@@ -25,6 +25,6 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
TRY(Core::System::write(1, str.bytes()));
if (feof(stdin))
return 0;
- VERIFY(str.to_string().characters());
+ VERIFY(str.to_deprecated_string().characters());
}
}