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

This commit is contained in:
Andreas Mohr 2000-06-23 15:36:27 +00:00 committed by Alexandre Julliard
parent 2e41c3b1f7
commit c007a003c8
1 changed files with 1 additions and 1 deletions

View File

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