From 3be0bebb2b727b1237ffa701a34a94a9e24714d8 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Sun, 9 Feb 2025 07:03:14 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- src/tiff.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tiff.cc b/src/tiff.cc index b1e2bc1a8..45c96170f 100644 --- a/src/tiff.cc +++ b/src/tiff.cc @@ -20,7 +20,7 @@ void tiff2img( std::vector< char > & data, const char * format ) QSize imgSize = img.size(); int scaleSize = qMin( imgSize.width(), screenSize.width() ); img.scaledToWidth( scaleSize ).save( &buffer, format ); - buffer.setData( data.data(),data.size() ); + buffer.setData( data.data(), data.size() ); buffer.close(); } }