Merge pull request #3118 from mfreeborn/appease-clippy

Add missing semicolon to satisfy clippy
This commit is contained in:
Héctor 2025-11-30 19:35:08 +01:00 committed by GitHub
commit 87c3d76c9f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -243,7 +243,7 @@ impl core::Renderer for Renderer {
callback(self.engine.raster_pipeline.load(_handle));
#[cfg(not(feature = "image"))]
callback(Err(core::image::Error::Unsupported))
callback(Err(core::image::Error::Unsupported));
}
}