From 29503f24642be995af4885e9de92624cc8a74cc6 Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Sun, 24 Mar 2019 14:26:44 +0100 Subject: [PATCH] oleacc: Avoid using the comma operator. Signed-off-by: Michael Stefaniuc Signed-off-by: Alexandre Julliard --- dlls/oleacc/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/oleacc/client.c b/dlls/oleacc/client.c index 40e7fbd6539..0d313a27c30 100644 --- a/dlls/oleacc/client.c +++ b/dlls/oleacc/client.c @@ -353,7 +353,7 @@ static HRESULT WINAPI Client_accLocation(IAccessible *iface, LONG *pxLeft, if(!GetClientRect(This->hwnd, &rect)) return S_OK; - pt.x = rect.left, + pt.x = rect.left; pt.y = rect.top; MapWindowPoints(This->hwnd, NULL, &pt, 1); *pxLeft = pt.x;