ole32: Constify a variable (and fix a typo concerning its level of indirection).

This commit is contained in:
Andrew Talbot 2007-07-05 23:27:19 +01:00 committed by Alexandre Julliard
parent db892decda
commit eb7a89ccc6
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ static int AddMemoryLocation(LPVOID * pMem)
return 1;
}
static int RemoveMemoryLocation(LPVOID * pMem)
static int RemoveMemoryLocation(LPCVOID pMem)
{
LPVOID * Current;