[vlc-commits] mft: fix format string

Rémi Denis-Courmont git at videolan.org
Sat Oct 11 09:15:22 CEST 2014


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Oct 11 10:12:10 2014 +0300| [dbdd63484c7e8bed853e4f2b398c906df181be3a] | committer: Rémi Denis-Courmont

mft: fix format string

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=dbdd63484c7e8bed853e4f2b398c906df181be3a
---

 modules/codec/mft.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/modules/codec/mft.c b/modules/codec/mft.c
index 3ece889..143a308 100644
--- a/modules/codec/mft.c
+++ b/modules/codec/mft.c
@@ -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;
     }
 



More information about the vlc-commits mailing list