msvcrtd: remove unnecessary trace output

André Hentschel nerv at dawncrow.de
Wed Dec 16 08:24:20 CST 2009


that would always output (nil) which is senseless here.
---
 dlls/msvcrtd/debug.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/msvcrtd/debug.c b/dlls/msvcrtd/debug.c
index 7e2fa0d..3ddfbbc 100644
--- a/dlls/msvcrtd/debug.c
+++ b/dlls/msvcrtd/debug.c
@@ -47,7 +47,7 @@ void * CDECL MSVCRTD_operator_new_dbg(MSVCRT_size_t nSize, int nBlockUse,
 {
     void *retval = NULL;
 
-    TRACE("(%lu, %d, '%s', %d) returning %p\n", nSize, nBlockUse, szFileName, nLine, retval);
+    TRACE("(%lu, %d, '%s', %d)\n", nSize, nBlockUse, szFileName, nLine);
 
     switch(_BLOCK_TYPE(nBlockUse))
     {
-- 

Best Regards, André Hentschel



More information about the wine-patches mailing list