[PATCH] msctf: Use the ARRAY_SIZE() macro

Michael Stefaniuc mstefani at winehq.org
Mon Jul 30 14:18:13 CDT 2018


Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
---
 dlls/msctf/documentmgr.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/msctf/documentmgr.c b/dlls/msctf/documentmgr.c
index cf4c601cff..9fa6b0f0dd 100644
--- a/dlls/msctf/documentmgr.c
+++ b/dlls/msctf/documentmgr.c
@@ -188,7 +188,7 @@ static HRESULT WINAPI DocumentMgr_Pop(ITfDocumentMgr *iface, DWORD dwFlags)
     {
         int i;
 
-        for (i = 0; i < sizeof(This->contextStack)/sizeof(This->contextStack[0]); i++)
+        for (i = 0; i < ARRAY_SIZE(This->contextStack); i++)
             if (This->contextStack[i])
             {
                 ITfThreadMgrEventSink_OnPopContext(This->ThreadMgrSink, This->contextStack[i]);
-- 
2.14.4




More information about the wine-devel mailing list