qedit: Fix return value of DllUnregisterServer.

This commit is contained in:
Austin English 2010-05-22 01:23:56 -05:00 committed by Alexandre Julliard
parent b7f3aa61f4
commit caf0e0befe
1 changed files with 1 additions and 1 deletions

View File

@ -326,5 +326,5 @@ HRESULT WINAPI DllUnregisterServer(void)
TRACE("\n");
hr = unregister_coclasses(coclass_list);
return S_OK;
return hr;
}