msvcrt: Fixed debug message in strncpy_s.
This commit is contained in:
parent
23191a4355
commit
4716cd37ee
|
@ -596,7 +596,7 @@ int CDECL strncpy_s(char *dest, MSVCRT_size_t numberOfElements,
|
||||||
{
|
{
|
||||||
MSVCRT_size_t i, end;
|
MSVCRT_size_t i, end;
|
||||||
|
|
||||||
TRACE("(%s %lu %s %lu)\n", dest, numberOfElements, src, count);
|
TRACE("(%p %lu %s %lu)\n", dest, numberOfElements, debugstr_a(src), count);
|
||||||
|
|
||||||
if(!count) {
|
if(!count) {
|
||||||
if(dest && numberOfElements)
|
if(dest && numberOfElements)
|
||||||
|
|
Loading…
Reference in New Issue