From: John Hodge Date: Sat, 2 Feb 2013 13:20:22 +0000 (+0800) Subject: Usermode/libc - Removed debug SysDebug X-Git-Tag: rel0.15~592 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;ds=sidebyside;h=f9ab9d52d2e0b25868cf8e6cf4c614400b4fe1cb;p=tpg%2Facess2.git Usermode/libc - Removed debug SysDebug --- diff --git a/Usermode/Libraries/libc.so_src/printf.c b/Usermode/Libraries/libc.so_src/printf.c index e820718d..1c946c21 100644 --- a/Usermode/Libraries/libc.so_src/printf.c +++ b/Usermode/Libraries/libc.so_src/printf.c @@ -9,7 +9,6 @@ #include #include #include -#include // debug! // === TYPES === typedef void (*printf_putch_t)(void *h, char ch); @@ -35,8 +34,6 @@ EXPORT int _vcprintf_int(printf_putch_t putch_cb, void *putch_h, const char *for uint64_t arg; int bLongLong, bPadLeft; - _SysDebug("format=%s", format); - #define _addchar(ch) do { \ putch_cb(putch_h, ch); \ pos ++; \