Skip to content

Commit bd3085e

Browse files
committed
removed Linux LoadLibrary stderr printf
1 parent b6f74f0 commit bd3085e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

OS/OS_linux_common.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -196,10 +196,10 @@ inline void* Services_Common::LoadLibrary(
196196
const std::string& libraryName ) const
197197
{
198198
void* pLibrary = dlopen( libraryName.c_str(), RTLD_NOW | RTLD_GLOBAL );
199-
if( pLibrary == NULL )
200-
{
201-
fprintf(stderr, "dlopen() error: %s\n", dlerror());
202-
}
199+
//if( pLibrary == NULL )
200+
//{
201+
// fprintf(stderr, "dlopen() error: %s\n", dlerror());
202+
//}
203203
return pLibrary;
204204
}
205205

0 commit comments

Comments
 (0)