comsvcs/tests: Fix a typo in an ok() message.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2019-03-14 02:41:15 +01:00 committed by Alexandre Julliard
parent 17276a8e40
commit 93e1a5f270
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ static HRESULT WINAPI driver_QueryInterface(IDispenserDriver *iface, REFIID riid
return S_OK;
}
ok(0, "Unknown iterface %s\n", wine_dbgstr_guid(riid));
ok(0, "Unknown interface %s\n", wine_dbgstr_guid(riid));
return E_NOINTERFACE;
}