Commit 6357f9c0 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

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.
parent 17176282
......@@ -340,7 +340,7 @@ static BOOL UIINSERTOBJECTDLG_PopulateObjectTypes(InsertObjectDlgInfo* pdlgInfo)
HKEY hkclsids;
HKEY hkey;
CLSID clsid;
HRESULT ret;
LSTATUS ret;
WCHAR keydesc[MAX_PATH];
WCHAR keyname[MAX_PATH];
WCHAR szclsid[128];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment