From 866f6b3c249be9ad68f5b895a22290292bb07f88 Mon Sep 17 00:00:00 2001 From: vmobilis <75476228+vmobilis@users.noreply.github.com> Date: Fri, 21 Aug 2026 15:54:15 +0300 Subject: [PATCH] stb_image_write.h: typo --- thirdparty/stb_image_write.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thirdparty/stb_image_write.h b/thirdparty/stb_image_write.h index 9128a3131..258411277 100644 --- a/thirdparty/stb_image_write.h +++ b/thirdparty/stb_image_write.h @@ -1528,7 +1528,7 @@ static int stbi_write_jpg_core(stbi__write_context *s, int width, int height, in // comment block with parameters of generation if(parameters != NULL) { - stbiw__putc(s, 0xFF /* comnent */ ); + stbiw__putc(s, 0xFF /* comment */ ); stbiw__putc(s, 0xFE /* marker */ ); int param_length = STBMIN(2 + (int)strlen("parameters") + 1 + (int)strlen(parameters) + 1, 0xFFFF); stbiw__putc(s, param_length >> 8); // no need to mask, length < 65536