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

Alexandre Julliard julliard at wine.codeweavers.com
Fri Jul 6 12:59:04 CDT 2007


Module: wine
Branch: master
Commit: eb7a89ccc6c52af07ad079831d5da92f7bb156d6
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=eb7a89ccc6c52af07ad079831d5da92f7bb156d6

Author: Andrew Talbot <Andrew.Talbot at 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;
 




More information about the wine-cvs mailing list