Commit bac92dd6 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

qedit: List parameters in order in create function traces.

parent 00558c29
......@@ -640,7 +640,7 @@ static const IMediaDetVtbl IMediaDet_VTable =
HRESULT MediaDet_create(IUnknown * pUnkOuter, LPVOID * ppv) {
MediaDetImpl* obj = NULL;
TRACE("(%p,%p)\n", ppv, pUnkOuter);
TRACE("(%p,%p)\n", pUnkOuter, ppv);
obj = CoTaskMemAlloc(sizeof(MediaDetImpl));
if (NULL == obj) {
......
......@@ -1262,7 +1262,7 @@ HRESULT SampleGrabber_create(IUnknown *pUnkOuter, LPVOID *ppv)
ISeekingPassThru *passthru;
HRESULT hr;
TRACE("(%p,%p)\n", ppv, pUnkOuter);
TRACE("(%p,%p)\n", pUnkOuter, ppv);
obj = CoTaskMemAlloc(sizeof(SG_Impl));
if (NULL == obj) {
......
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