Commit 710483eb authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

qedit: Remove unneeded address-of operator from array name.

parent 85fc5a3a
......@@ -88,7 +88,7 @@ Fixed_IEnumPins_QueryInterface(IEnumPins *iface, REFIID riid, void **ppvObject)
if (IsEqualIID(riid, &IID_IUnknown) ||
IsEqualIID(riid, &IID_IEnumPins)) {
Fixed_IEnumPins_AddRef(iface);
*ppvObject = &(This->pins);
*ppvObject = This->pins;
return S_OK;
}
*ppvObject = NULL;
......
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