From: Alex Henrie alexhenrie24@gmail.com
--- 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]; }
This merge request was approved by Matteo Bruni.