Module: wine Branch: master Commit: 511f98280d1ba0ccce63453d4deae67437fff200 URL: https://gitlab.winehq.org/wine/wine/-/commit/511f98280d1ba0ccce63453d4deae67...
Author: Francois Gouget fgouget@free.fr Date: Mon Feb 13 18:33:24 2023 +0100
uiautomationcore: Fix a typo in a FIXME() message.
---
dlls/uiautomationcore/uia_client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/uiautomationcore/uia_client.c b/dlls/uiautomationcore/uia_client.c index 14f9977a4d6..eb49640a61f 100644 --- a/dlls/uiautomationcore/uia_client.c +++ b/dlls/uiautomationcore/uia_client.c @@ -147,7 +147,7 @@ int uia_compare_safearrays(SAFEARRAY *sa1, SAFEARRAY *sa2, int prop_type)
if (prop_type != UIAutomationType_IntArray) { - FIXME("Array type %#x value comparsion currently unimplemented.\n", prop_type); + FIXME("Array type %#x value comparison currently unimplemented.\n", prop_type); return -1; }