oledlg: Fix the type of ret in UIINSERTOBJECTDLG_PopulateObjectTypes.

It is only used for storing the result of RegEnumKeyW so it should be
LSTATUS instead of HRESULT.
This commit is contained in:
Rob Shearman 2008-09-30 13:55:22 +01:00 committed by Alexandre Julliard
parent 171762827c
commit 6357f9c02c
1 changed files with 1 additions and 1 deletions

View File

@ -340,7 +340,7 @@ static BOOL UIINSERTOBJECTDLG_PopulateObjectTypes(InsertObjectDlgInfo* pdlgInfo)
HKEY hkclsids; HKEY hkclsids;
HKEY hkey; HKEY hkey;
CLSID clsid; CLSID clsid;
HRESULT ret; LSTATUS ret;
WCHAR keydesc[MAX_PATH]; WCHAR keydesc[MAX_PATH];
WCHAR keyname[MAX_PATH]; WCHAR keyname[MAX_PATH];
WCHAR szclsid[128]; WCHAR szclsid[128];