26 May
2022
26 May
'22
4:54 p.m.
Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com> --- dlls/mshtml/nsio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/mshtml/nsio.c b/dlls/mshtml/nsio.c index e1a1d6e..f1859e2 100644 --- a/dlls/mshtml/nsio.c +++ b/dlls/mshtml/nsio.c @@ -599,9 +599,9 @@ static nsresult NSAPI nsChannel_GetStatus(nsIHttpChannel *iface, nsresult *aStat { nsChannel *This = impl_from_nsIHttpChannel(iface); - WARN("(%p)->(%p) returning NS_OK\n", This, aStatus); + TRACE("(%p)->(%p) returning %#lx\n", This, aStatus, This->status); - return *aStatus = NS_OK; + return *aStatus = This->status; } static nsresult NSAPI nsChannel_Cancel(nsIHttpChannel *iface, nsresult aStatus) -- 2.34.1