From f4019db7f8786bb74fea0adf67a50c5f6b9aac8a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Tue, 1 Jan 2013 14:57:12 +0000 Subject: [PATCH] Fix comment svn path=/trunk/; revision=58086 --- reactos/base/applications/regedit/error.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/base/applications/regedit/error.c b/reactos/base/applications/regedit/error.c index cd4ba993e80..1999ac6b2b1 100644 --- a/reactos/base/applications/regedit/error.c +++ b/reactos/base/applications/regedit/error.c @@ -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) { -- 2.17.1