From: John Hodge Date: Mon, 21 Sep 2009 10:54:42 +0000 (+0800) Subject: Removed debug line from ld-acess.so/loadlib X-Git-Tag: rel0.06~550 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=28c6905a3a3e85860d80a126c250aa4de70683bb;p=tpg%2Facess2.git Removed debug line from ld-acess.so/loadlib --- 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);