user32: Constify a variable

Andrew Talbot andrew.talbot at talbotville.com
Tue Nov 13 15:55:27 CST 2007


Changelog:
    user32: Constify a variable.

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-patches mailing list