diff --git a/Userland/Utilities/chown.cpp b/Userland/Utilities/chown.cpp index 9292dc81e0..57c9bbcdf0 100644 --- a/Userland/Utilities/chown.cpp +++ b/Userland/Utilities/chown.cpp @@ -4,7 +4,6 @@ * SPDX-License-Identifier: BSD-2-Clause */ -#include #include #include #include @@ -21,7 +20,7 @@ ErrorOr serenity_main(Main::Arguments arguments) { TRY(Core::System::pledge("stdio rpath chown")); - DeprecatedString spec; + StringView spec; Vector paths; bool no_dereference = false; bool recursive = false;