Module: wine Branch: master Commit: e6f6d5fe9502bd8cc2888d281eb76a6183e5024b URL: http://source.winehq.org/git/wine.git/?a=commit;h=e6f6d5fe9502bd8cc2888d281e... Author: Roderick Colenbrander <thunderbird2k(a)gmx.net> Date: Wed Aug 29 00:40:46 2007 +0200 gdi32: Print the function name in wglGetProcAddress. --- dlls/gdi32/opengl.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/gdi32/opengl.c b/dlls/gdi32/opengl.c index 1aa027c..97ecaf6 100644 --- a/dlls/gdi32/opengl.c +++ b/dlls/gdi32/opengl.c @@ -285,7 +285,7 @@ PROC WINAPI wglGetProcAddress(LPCSTR func) if(!func) return NULL; - TRACE("func: '%p'\n", func); + TRACE("func: '%s'\n", func); /* Retrieve the global hDC to get access to the driver. */ dc = OPENGL_GetDefaultDC();