Author: tfaber
Date: Sun Oct 12 13:23:38 2014
New Revision: 64695
URL:
http://svn.reactos.org/svn/reactos?rev=64695&view=rev
Log:
[ROSAUTOTEST]
- DbgPrint expects a format string!
ROSTESTS-145 #resolve
Modified:
trunk/rostests/rosautotest/tools.cpp
Modified: trunk/rostests/rosautotest/tools.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/rostests/rosautotest/tools.cpp?rev…
==============================================================================
--- trunk/rostests/rosautotest/tools.cpp [iso-8859-1] (original)
+++ trunk/rostests/rosautotest/tools.cpp [iso-8859-1] Sun Oct 12 13:23:38 2014
@@ -136,7 +136,7 @@
}
DbgString[size] = 0;
- DbgPrint(DbgString);
+ OutputDebugStringA(DbgString);
}
last_newline = curr_pos;
@@ -153,7 +153,7 @@
memcpy(DbgString, NewString.c_str() + start, size);
DbgString[size] = 0;
- DbgPrint(DbgString);
+ OutputDebugStringA(DbgString);
NewString.clear();
return NewString;