Commit 4114cea3 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

gdi32: Use "%p" to TRACE() pointers.

parent 4b53e2b6
...@@ -1243,8 +1243,8 @@ BOOL WINAPI GdiGradientFill( HDC hdc, TRIVERTEX *vert_array, ULONG nvert, ...@@ -1243,8 +1243,8 @@ BOOL WINAPI GdiGradientFill( HDC hdc, TRIVERTEX *vert_array, ULONG nvert,
{ {
unsigned int i; unsigned int i;
TRACE("vert_array:0x%08lx nvert:%d grad_array:0x%08lx ngrad:%d\n", TRACE("vert_array:%p nvert:%d grad_array:%p ngrad:%d\n",
(long)vert_array, nvert, (long)grad_array, ngrad); vert_array, nvert, grad_array, ngrad);
switch(mode) switch(mode)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment