diff --git a/Ladybird/ImageCodecPlugin.cpp b/Ladybird/ImageCodecPlugin.cpp index 8a9d71fe950..45cf2ba4225 100644 --- a/Ladybird/ImageCodecPlugin.cpp +++ b/Ladybird/ImageCodecPlugin.cpp @@ -51,7 +51,7 @@ NonnullRefPtr> ImageCodecPlugin::deco Web::Platform::DecodedImage decoded_image; decoded_image.is_animated = result.is_animated; decoded_image.loop_count = result.loop_count; - for (auto const& frame : result.frames) { + for (auto& frame : result.frames) { decoded_image.frames.empend(move(frame.bitmap), frame.duration); } promise->resolve(move(decoded_image));