Replaced the BUILTIN32_dlopen() ERR() by a WARN().
This commit is contained in:
parent
2e41c3b1f7
commit
c007a003c8
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue