msvcrt: Fixed debug message in strncpy_s.

This commit is contained in:
Piotr Caban 2013-04-05 15:18:18 +02:00 committed by Alexandre Julliard
parent 23191a4355
commit 4716cd37ee
1 changed files with 1 additions and 1 deletions

View File

@ -596,7 +596,7 @@ int CDECL strncpy_s(char *dest, MSVCRT_size_t numberOfElements,
{
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(dest && numberOfElements)