summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGfx/PGMLoader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibGfx/PGMLoader.cpp')
-rw-r--r--Userland/Libraries/LibGfx/PGMLoader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGfx/PGMLoader.cpp b/Userland/Libraries/LibGfx/PGMLoader.cpp
index be2aad4821..eb04c31139 100644
--- a/Userland/Libraries/LibGfx/PGMLoader.cpp
+++ b/Userland/Libraries/LibGfx/PGMLoader.cpp
@@ -99,7 +99,7 @@ static bool read_image_data(PGMLoadingContext& context, Streamer& streamer)
return true;
}
-RefPtr<Gfx::Bitmap> load_pgm(const StringView& path)
+RefPtr<Gfx::Bitmap> load_pgm(StringView path)
{
return load<PGMLoadingContext>(path);
}