summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/HTML
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/LibWeb/HTML')
-rw-r--r--Libraries/LibWeb/HTML/CanvasRenderingContext2D.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibWeb/HTML/CanvasRenderingContext2D.cpp b/Libraries/LibWeb/HTML/CanvasRenderingContext2D.cpp
index 729e78ec57..a043527f5b 100644
--- a/Libraries/LibWeb/HTML/CanvasRenderingContext2D.cpp
+++ b/Libraries/LibWeb/HTML/CanvasRenderingContext2D.cpp
@@ -207,7 +207,7 @@ void CanvasRenderingContext2D::fill(const String& fill_rule)
RefPtr<ImageData> CanvasRenderingContext2D::create_image_data(int width, int height) const
{
if (!wrapper()) {
- dbg() << "Hmm! Attempted to create ImageData for wrapper-less CRC2D.";
+ dbgln("Hmm! Attempted to create ImageData for wrapper-less CRC2D.");
return nullptr;
}
return ImageData::create_with_size(wrapper()->global_object(), width, height);