vbscript: Fix a typo.

This commit is contained in:
Frédéric Delanoy 2012-04-17 22:09:01 +02:00 committed by Alexandre Julliard
parent eaaf089213
commit c5bcfbc5c5
1 changed files with 1 additions and 1 deletions

View File

@ -543,7 +543,7 @@ HRESULT disp_get_id(IDispatch *disp, BSTR name, vbdisp_invoke_type_t invoke_type
hres = IDispatch_QueryInterface(disp, &IID_IDispatchEx, (void**)&dispex);
if(FAILED(hres)) {
TRACE("unsing IDispatch\n");
TRACE("using IDispatch\n");
return IDispatch_GetIDsOfNames(disp, &IID_NULL, &name, 1, 0, id);
}