From 06e01181844ead1db16bf1f7b16c53e5b15b8c0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 8 Jul 2025 16:38:25 +0200 Subject: [PATCH] GL: of course I pushed a total stupidity right to master. Once again the case of not properly commiting working copy changes before a push. This should have gone to 096f1a5269502e75cd82f23710313bfd1fd0a62b already. --- src/Magnum/GL/Test/PixelStorageGLTest.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Magnum/GL/Test/PixelStorageGLTest.cpp b/src/Magnum/GL/Test/PixelStorageGLTest.cpp index 2093336cb..708249d1e 100644 --- a/src/Magnum/GL/Test/PixelStorageGLTest.cpp +++ b/src/Magnum/GL/Test/PixelStorageGLTest.cpp @@ -221,9 +221,8 @@ void PixelStorageGLTest::alignmentPack2D() { if(Context::current().detectedDriver() & Context::DetectedDriver::SwiftShader) { CORRADE_COMPARE(image.data().size(), Containers::arraySize(AlignmentData2D)); for(std::size_t i: {9, 19}) { - CORRADE_ITERATION(i); if(image.data()[i] != '\0') { - CORRADE_WARN("Padding byte at offset 9 isn't zero but" << image.data()[i]); + CORRADE_WARN("Padding byte at offset" << i << "isn't zero but" << image.data()[i]); image.data()[i] = '\0'; } }