Module: wine Branch: master Commit: eb7a89ccc6c52af07ad079831d5da92f7bb156d6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=eb7a89ccc6c52af07ad079831d...
Author: Andrew Talbot Andrew.Talbot@talbotville.com Date: Thu Jul 5 23:27:19 2007 +0100
ole32: Constify a variable (and fix a typo concerning its level of indirection).
---
dlls/ole32/ifs.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/ole32/ifs.c b/dlls/ole32/ifs.c index bd8f483..ec20da3 100644 --- a/dlls/ole32/ifs.c +++ b/dlls/ole32/ifs.c @@ -116,7 +116,7 @@ static int AddMemoryLocation(LPVOID * pMem) return 1; }
-static int RemoveMemoryLocation(LPVOID * pMem) +static int RemoveMemoryLocation(LPCVOID pMem) { LPVOID * Current;