Commit 4716cd37 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcrt: Fixed debug message in strncpy_s.

parent 23191a43
...@@ -596,7 +596,7 @@ int CDECL strncpy_s(char *dest, MSVCRT_size_t numberOfElements, ...@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment