From aef4bd7e1c3511886ff052c604dce73a17767345 Mon Sep 17 00:00:00 2001 From: Mirco Miranda Date: Mon, 7 Jul 2025 08:17:36 +0200 Subject: [PATCH] Fix unused param in MicroExif::toByteArray() --- src/imageformats/microexif.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imageformats/microexif.cpp b/src/imageformats/microexif.cpp index 710fc6e..4b1a401 100644 --- a/src/imageformats/microexif.cpp +++ b/src/imageformats/microexif.cpp @@ -1072,7 +1072,7 @@ QByteArray MicroExif::toByteArray(const QDataStream::ByteOrder &byteOrder, const QByteArray ba; { QBuffer buf(&ba); - if (!write(&buf, byteOrder)) + if (!write(&buf, byteOrder, version)) return {}; } return ba;