Disable not found function printing (closes #18)

This commit is contained in:
cra0zy 2018-02-02 19:21:08 +01:00
parent b39665f81a
commit b93654e39d

View file

@ -85,9 +85,6 @@ class FuncLoader
else else
ret = Linux.dlsym(library, function); ret = Linux.dlsym(library, function);
if (ret == IntPtr.Zero)
Console.WriteLine("[WARNING] Function not found: " + function);
return ret; return ret;
} }