[PATCH] oleaut32: Fix a typo in FIXME() message.

Andrey Gusev andrey.goosev at gmail.com
Thu Nov 29 06:19:09 CST 2018


Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
---
 dlls/oleaut32/safearray.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/oleaut32/safearray.c b/dlls/oleaut32/safearray.c
index 01dbfc3417..64a5ab94d5 100644
--- a/dlls/oleaut32/safearray.c
+++ b/dlls/oleaut32/safearray.c
@@ -289,7 +289,7 @@ static HRESULT SAFEARRAY_DestroyData(SAFEARRAY *psa, ULONG ulStartCell)
     ULONG ulCellCount = SAFEARRAY_GetCellCount(psa);
 
     if (ulStartCell > ulCellCount) {
-      FIXME("unexpted ulcellcount %d, start %d\n",ulCellCount,ulStartCell);
+      FIXME("unexpected ulCellCount %d, start %d\n",ulCellCount,ulStartCell);
       return E_UNEXPECTED;
     }
 
-- 
2.17.2




More information about the wine-devel mailing list