From 499e349afa57536ce80497aa99f61c5492e3733e Mon Sep 17 00:00:00 2001 From: "Nicolas \"Pixel\" Noble" Date: Sat, 29 Jan 2011 03:15:44 +0100 Subject: More filesystem stuff working. devfs is now in place with stdin, stdout, and stderr. --- os/src/printf.c | 1 - 1 file changed, 1 deletion(-) (limited to 'os/src/printf.c') diff --git a/os/src/printf.c b/os/src/printf.c index 599857c..83f7539 100644 --- a/os/src/printf.c +++ b/os/src/printf.c @@ -6,7 +6,6 @@ int printf(const char * fmt, ...) { int r; va_list ap; - DBGOUT("printf(%p, ...)\r\n", fmt); va_start(ap, fmt); r = _vprintf_r(_impure_ptr, fmt, ap); va_end(ap); -- cgit v1.2.3