From 6f774af11e0316a3d57f1403f96874dfd5576574 Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Thu, 10 Jul 2025 04:05:16 -0700 Subject: [PATCH] core/colorquant: print image source url vs pointer on err --- src/core/colorquantizer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/colorquantizer.cpp b/src/core/colorquantizer.cpp index 9f443b81..6cfb05db 100644 --- a/src/core/colorquantizer.cpp +++ b/src/core/colorquantizer.cpp @@ -47,7 +47,7 @@ void ColorQuantizerOperation::quantizeImage(const QAtomicInteger& shouldCa } if (image.isNull()) { - qCWarning(logColorQuantizer) << "Failed to load image from" << source; + qCWarning(logColorQuantizer) << "Failed to load image from" << source->toString(); return; }