From 4716cd37eee8f7e9f5deb65db785005956920b6d Mon Sep 17 00:00:00 2001 From: Piotr Caban Date: Fri, 5 Apr 2013 15:18:18 +0200 Subject: [PATCH] msvcrt: Fixed debug message in strncpy_s. --- dlls/msvcrt/heap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msvcrt/heap.c b/dlls/msvcrt/heap.c index e8c37659137..bd914a75bc8 100644 --- a/dlls/msvcrt/heap.c +++ b/dlls/msvcrt/heap.c @@ -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)