Andrew Talbot : user32: Constify a variable.
Module: wine Branch: master Commit: b673b984f230020abc22aee64784732f8fc38504 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b673b984f230020abc22aee647... Author: Andrew Talbot <andrew.talbot(a)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;
participants (1)
-
Alexandre Julliard