Commit c007a003 authored by Andreas Mohr's avatar Andreas Mohr Committed by Alexandre Julliard

Replaced the BUILTIN32_dlopen() ERR() by a WARN().

parent 2e41c3b1
......@@ -94,7 +94,7 @@ void *BUILTIN32_dlopen( const char *name )
strcat( buffer, ".so" );
if (!(handle = ELFDLL_dlopen( buffer, RTLD_NOW )))
ERR( "failed to load %s: %s\n", buffer, dlerror() );
WARN( "failed to load %s: %s\n", buffer, dlerror() );
return handle;
#else
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