summaryrefslogtreecommitdiff
path: root/Userland/Utilities/gml-format.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Utilities/gml-format.cpp')
-rw-r--r--Userland/Utilities/gml-format.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Utilities/gml-format.cpp b/Userland/Utilities/gml-format.cpp
index 5e3aecc1fe..bc7e53021b 100644
--- a/Userland/Utilities/gml-format.cpp
+++ b/Userland/Utilities/gml-format.cpp
@@ -9,9 +9,9 @@
#include <LibGUI/GMLFormatter.h>
#include <unistd.h>
-bool format_file(const StringView&, bool);
+bool format_file(StringView, bool);
-bool format_file(const StringView& path, bool inplace)
+bool format_file(StringView path, bool inplace)
{
auto read_from_stdin = path == "-";
RefPtr<Core::File> file;