From 00221c69d1bf59a44e8c4e8c0a4581c18c943b2d Mon Sep 17 00:00:00 2001 From: apistol78 Date: Thu, 22 Feb 2024 14:57:17 +0100 Subject: [PATCH] Traktor: Compile fix in EXR image format reader. --- code/Drawing/Formats/ImageFormatExr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/Drawing/Formats/ImageFormatExr.cpp b/code/Drawing/Formats/ImageFormatExr.cpp index 397abe34b7..3220645217 100644 --- a/code/Drawing/Formats/ImageFormatExr.cpp +++ b/code/Drawing/Formats/ImageFormatExr.cpp @@ -73,7 +73,7 @@ bool ImageFormatExr::write(IStream* stream, const Image* image) img->getHeight(), 4, 0, - (const unsigned char**)&buffer, + (unsigned char**)&buffer, nullptr ); if (size <= 0)