mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[ROSAUTOTEST]
- DbgPrint expects a format string! ROSTESTS-145 #resolve svn path=/trunk/; revision=64695
This commit is contained in:
parent
6214688a97
commit
5aaaab86e4
1 changed files with 2 additions and 2 deletions
|
@ -136,7 +136,7 @@ StringOut(const string& String, bool forcePrint)
|
|||
}
|
||||
|
||||
DbgString[size] = 0;
|
||||
DbgPrint(DbgString);
|
||||
OutputDebugStringA(DbgString);
|
||||
}
|
||||
|
||||
last_newline = curr_pos;
|
||||
|
@ -153,7 +153,7 @@ StringOut(const string& String, bool forcePrint)
|
|||
|
||||
memcpy(DbgString, NewString.c_str() + start, size);
|
||||
DbgString[size] = 0;
|
||||
DbgPrint(DbgString);
|
||||
OutputDebugStringA(DbgString);
|
||||
|
||||
NewString.clear();
|
||||
return NewString;
|
||||
|
|
Loading…
Reference in a new issue