From bd3085e2c8d90914b86f243e42139f5f5fbe672e Mon Sep 17 00:00:00 2001 From: bashbaug Date: Wed, 11 Apr 2018 22:42:29 -0700 Subject: [PATCH] removed Linux LoadLibrary stderr printf --- OS/OS_linux_common.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/OS/OS_linux_common.h b/OS/OS_linux_common.h index d05b0460..faaccf3f 100644 --- a/OS/OS_linux_common.h +++ b/OS/OS_linux_common.h @@ -196,10 +196,10 @@ inline void* Services_Common::LoadLibrary( const std::string& libraryName ) const { void* pLibrary = dlopen( libraryName.c_str(), RTLD_NOW | RTLD_GLOBAL ); - if( pLibrary == NULL ) - { - fprintf(stderr, "dlopen() error: %s\n", dlerror()); - } + //if( pLibrary == NULL ) + //{ + // fprintf(stderr, "dlopen() error: %s\n", dlerror()); + //} return pLibrary; }