Merge pull request #19 from cra0zy/hidefuncmessages

Disable not found function printing (closes #18)
This commit is contained in:
Harry 2018-02-02 19:29:40 +01:00 committed by GitHub
commit 957cec71d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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