Alex Henrie : evr: Use debugstr_fourcc instead of debugstr_an.
Module: wine Branch: master Commit: 4fef7086602c5eec78104857da6029b133f1c73e URL: https://gitlab.winehq.org/wine/wine/-/commit/4fef7086602c5eec78104857da6029b... Author: Alex Henrie <alexhenrie24(a)gmail.com> Date: Mon Oct 16 23:30:20 2023 -0600 evr: Use debugstr_fourcc instead of debugstr_an. --- dlls/evr/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/evr/main.c b/dlls/evr/main.c index 702e4640831..5c2049a61da 100644 --- a/dlls/evr/main.c +++ b/dlls/evr/main.c @@ -213,7 +213,7 @@ HRESULT WINAPI MFCreateVideoMixerAndPresenter(IUnknown *mixer_outer, IUnknown *p */ BOOL WINAPI MFIsFormatYUV(DWORD format) { - TRACE("%s.\n", debugstr_an((char *)&format, 4)); + TRACE("%s.\n", debugstr_fourcc(format)); switch (format) {
participants (1)
-
Alexandre Julliard