Commit b904063b authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Removed one &, now CoCreateInstance() of ddraw objects works again.

parent 21ea8a91
......@@ -411,7 +411,7 @@ DWORD WINAPI DDRAW_DllGetClassObject(REFCLSID rclsid,REFIID riid,LPVOID *ppv)
for (i=0; i < sizeof(object_creation)/sizeof(object_creation[0]); i++)
{
if (IsEqualGUID(&object_creation[i].clsid, rclsid))
if (IsEqualGUID(object_creation[i].clsid, rclsid))
break;
}
......
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