gdi32: Print the function name in wglGetProcAddress.

This commit is contained in:
Roderick Colenbrander 2007-08-29 00:40:46 +02:00 committed by Alexandre Julliard
parent 49c635094b
commit e6f6d5fe95
1 changed files with 1 additions and 1 deletions

View File

@ -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();