From 28c6905a3a3e85860d80a126c250aa4de70683bb Mon Sep 17 00:00:00 2001 From: John Hodge Date: Mon, 21 Sep 2009 18:54:42 +0800 Subject: [PATCH] Removed debug line from ld-acess.so/loadlib --- Usermode/Libraries/ld-acess.so_src/loadlib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Usermode/Libraries/ld-acess.so_src/loadlib.c b/Usermode/Libraries/ld-acess.so_src/loadlib.c index 25fcc1a4..85831411 100644 --- a/Usermode/Libraries/ld-acess.so_src/loadlib.c +++ b/Usermode/Libraries/ld-acess.so_src/loadlib.c @@ -172,8 +172,8 @@ Uint GetSymbol(char *name) { if(gLoadedLibraries[i].Base == 0) break; - SysDebug(" GetSymbol: Trying 0x%x, '%s'\n", - gLoadedLibraries[i].Base, gLoadedLibraries[i].Name); + //SysDebug(" GetSymbol: Trying 0x%x, '%s'\n", + // gLoadedLibraries[i].Base, gLoadedLibraries[i].Name); if(GetSymbolFromBase(gLoadedLibraries[i].Base, name, &ret)) return ret; } SysDebug("GetSymbol: === Symbol '%s' not found ===\n", name); -- 2.20.1