Skip to content

Commit

Permalink
[STRSAFE] Fix StringCbPrintfW
Browse files Browse the repository at this point in the history
  • Loading branch information
dz333n committed Aug 1, 2019
1 parent 1b8d117 commit 480d60b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion COREDLL/strsafe_wcecl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ HRESULT WINAPI StringCbPrintfW_WCECL(wchar_t* pszDest, size_t cbDest, const wcha
{
va_list args;
va_start(args, pszFormat);
HRESULT result = ::StringCbPrintfW(pszDest, cbDest, pszFormat, args);
HRESULT result = ::StringCchVPrintfW_WCECL(pszDest, cbDest, pszFormat, args);
va_end(args);
return result;
}
Expand Down

0 comments on commit 480d60b

Please sign in to comment.