From b93654e39de56579a0ecc8a7ac3479615dd6fadd Mon Sep 17 00:00:00 2001 From: cra0zy Date: Fri, 2 Feb 2018 19:21:08 +0100 Subject: [PATCH] Disable not found function printing (closes #18) --- Source/Libs/Shared/FuncLoader.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Source/Libs/Shared/FuncLoader.cs b/Source/Libs/Shared/FuncLoader.cs index 118cdd039..112027bc2 100644 --- a/Source/Libs/Shared/FuncLoader.cs +++ b/Source/Libs/Shared/FuncLoader.cs @@ -85,9 +85,6 @@ class FuncLoader else ret = Linux.dlsym(library, function); - if (ret == IntPtr.Zero) - Console.WriteLine("[WARNING] Function not found: " + function); - return ret; }