Commit 9f331f48 authored by Lionel Ulmer's avatar Lionel Ulmer Committed by Alexandre Julliard

Convert mostly useless ERR to WARN message.

parent 19f2669c
...@@ -347,7 +347,7 @@ void* WINAPI wglGetProcAddress(LPCSTR lpszProc) { ...@@ -347,7 +347,7 @@ void* WINAPI wglGetProcAddress(LPCSTR lpszProc) {
local_func = p_glXGetProcAddressARB(lpszProc); local_func = p_glXGetProcAddressARB(lpszProc);
LEAVE_GL(); LEAVE_GL();
if (local_func != NULL) { if (local_func != NULL) {
ERR("Extension %s defined in the OpenGL library but NOT in opengl_ext.c... Please report (lionel.ulmer@free.fr) !\n", lpszProc); WARN("Extension %s defined in the OpenGL library but NOT in opengl_ext.c...\n", lpszProc);
return NULL; return NULL;
} }
......
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