Fix comment

svn path=/trunk/; revision=58086
This commit is contained in:
Hermès Bélusca-Maïto 2013-01-01 14:57:12 +00:00
parent ae0b2b2e35
commit f4019db7f8

View file

@ -60,7 +60,7 @@ int InfoMessageBox(HWND hWnd, UINT uType, LPCWSTR lpTitle, LPCWSTR lpMessage, ..
{
SIZE_T strLen = _vscwprintf(lpMessage, args);
/* Create a buffer on the heap and zero-out it (LPTR) */
/* Create a buffer on the heap and zero it out (LPTR) */
lpMsgBuf = (LPWSTR)LocalAlloc(LPTR, (strLen + 1) * sizeof(WCHAR));
if (lpMsgBuf)
{