Commit d2de810d authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

mscoree: Remove unneeded address-of operator from function name.

parent 2f307a14
......@@ -607,7 +607,7 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
This = HeapAlloc(GetProcessHeap(), 0, sizeof(mscorecf));
This->IClassFactory_iface.lpVtbl = &mscorecf_vtbl;
This->pfnCreateInstance = &create_monodata;
This->pfnCreateInstance = create_monodata;
This->ref = 1;
This->clsid = *rclsid;
......
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