Andrey Gusev : oleaut32: Fix a typo in FIXME() message.

Alexandre Julliard julliard at winehq.org
Thu Nov 29 15:33:00 CST 2018


Module: wine
Branch: master
Commit: ca4bf6c80b699ac0b3d86e6b543a6a13b654e21b
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=ca4bf6c80b699ac0b3d86e6b543a6a13b654e21b

Author: Andrey Gusev <andrey.goosev at gmail.com>
Date:   Thu Nov 29 14:19:09 2018 +0200

oleaut32: Fix a typo in FIXME() message.

Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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 01dbfc3..64a5ab9 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;
     }
 




More information about the wine-cvs mailing list