Skip to content
Snippets Groups Projects
Commit df47d35e authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard
Browse files

Fixed incorrect format string.

parent 4494a500
No related branches found
No related tags found
No related merge requests found
......@@ -1130,7 +1130,7 @@ HRESULT WINAPI Xlib_IDirectDraw2Impl_GetFourCCCodes(
XvImageFormatValues *fo;
int array_size = *lpNumCodes;
TRACE("(%p,%p,%p) - %d slots available\n",This, lpNumCodes, lpCodes, *lpNumCodes);
TRACE("(%p,%p,%p) - %ld slots available\n",This, lpNumCodes, lpCodes, *lpNumCodes);
fo = TSXvListImageFormats(display, ddpriv->port_id, lpNumCodes);
if (fo == NULL) *lpNumCodes = 0; /* I am not sure if X is clean in this case... */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment