From: Fabian Maurer <dark.shadow4(a)web.de> --- dlls/mf/tests/transform.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dlls/mf/tests/transform.c b/dlls/mf/tests/transform.c index fa55e04934d..e828f719ffd 100644 --- a/dlls/mf/tests/transform.c +++ b/dlls/mf/tests/transform.c @@ -7778,10 +7778,10 @@ static void test_video_processor(BOOL use_2d_buffer) {0}, }; - static const MFVideoArea actual_aperture = {.Area={82,84}}; - static const DWORD actual_width = 96, actual_height = 96, nv12_aligned_width = 128; - static const DWORD extra_width = actual_width + 0x30; - static const DWORD nv12_aligned_extra_width = 192; + const MFVideoArea actual_aperture = {.Area={82,84}}; + const DWORD actual_width = 96, actual_height = 96, nv12_aligned_width = 128; + const DWORD extra_width = actual_width + 0x30; + const DWORD nv12_aligned_extra_width = 192; const struct attribute_desc rgb32_with_aperture[] = { ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video, .required = TRUE), -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/6707