Commit 99dfe572 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

mft: fix format string

(cherry picked from commit dbdd63484c7e8bed853e4f2b398c906df181be3a)
parent d3f878cc
......@@ -745,7 +745,8 @@ static int ProcessOutputStream(decoder_t *p_dec, DWORD stream_id, void **result)
}
else /* An error not listed above occurred */
{
msg_Err(p_dec, "Unexpected error in IMFTransform::ProcessOutput: %#x", hr);
msg_Err(p_dec, "Unexpected error in IMFTransform::ProcessOutput: %#lx",
hr);
goto error;
}
......
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