Module: wine Branch: master Commit: c7d9c4a8b6c21427fb0dd4d1a31b4dcba28d3cb6 URL: https://gitlab.winehq.org/wine/wine/-/commit/c7d9c4a8b6c21427fb0dd4d1a31b4dc...
Author: Alex Henrie alexhenrie24@gmail.com Date: Mon Oct 16 23:29:15 2023 -0600
d3dx9_36: Use debugstr_fourcc instead of debugstr_an.
---
dlls/d3dx9_36/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/d3dx9_36/util.c b/dlls/d3dx9_36/util.c index 39afe6740c0..419bd92884a 100644 --- a/dlls/d3dx9_36/util.c +++ b/dlls/d3dx9_36/util.c @@ -214,7 +214,7 @@ const struct pixel_format_desc *get_format_info(D3DFORMAT format) unsigned int i = 0; while(formats[i].format != format && formats[i].format != D3DFMT_UNKNOWN) i++; if (formats[i].format == D3DFMT_UNKNOWN) - FIXME("Unknown format %#x (as FOURCC %s).\n", format, debugstr_an((const char *)&format, 4)); + FIXME("Unknown format %s.\n", debugstr_fourcc(format)); return &formats[i]; }