mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 17:52:56 +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;
|
DbgString[size] = 0;
|
||||||
DbgPrint(DbgString);
|
OutputDebugStringA(DbgString);
|
||||||
}
|
}
|
||||||
|
|
||||||
last_newline = curr_pos;
|
last_newline = curr_pos;
|
||||||
|
@ -153,7 +153,7 @@ StringOut(const string& String, bool forcePrint)
|
||||||
|
|
||||||
memcpy(DbgString, NewString.c_str() + start, size);
|
memcpy(DbgString, NewString.c_str() + start, size);
|
||||||
DbgString[size] = 0;
|
DbgString[size] = 0;
|
||||||
DbgPrint(DbgString);
|
OutputDebugStringA(DbgString);
|
||||||
|
|
||||||
NewString.clear();
|
NewString.clear();
|
||||||
return NewString;
|
return NewString;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue