Andrew Talbot : user32: Constify a variable.

Alexandre Julliard julliard at winehq.org
Wed Nov 14 07:30:22 CST 2007


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

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Tue Nov 13 21:55:27 2007 +0000

user32: Constify a variable.

---

 dlls/user32/dde_client.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/user32/dde_client.c b/dlls/user32/dde_client.c
index 1c766ab..45aca46 100644
--- a/dlls/user32/dde_client.c
+++ b/dlls/user32/dde_client.c
@@ -1010,7 +1010,7 @@ static WDML_QUEUE_STATE WDML_HandleReply(WDML_CONV* pConv, MSG* msg, HDDEDATA* h
  * waits until an answer for a sent request is received
  * time out is also handled. only used for synchronous transactions
  */
-static HDDEDATA WDML_SyncWaitTransactionReply(HCONV hConv, DWORD dwTimeout, WDML_XACT* pXAct, DWORD *ack)
+static HDDEDATA WDML_SyncWaitTransactionReply(HCONV hConv, DWORD dwTimeout, const WDML_XACT* pXAct, DWORD *ack)
 {
     DWORD	dwTime;
     DWORD	err;




More information about the wine-cvs mailing list