[vlc-commits] mft: fix format string

Rémi Denis-Courmont git at videolan.org
Sat Oct 11 12:47:46 CEST 2014


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

mft: fix format string

(cherry picked from commit dbdd63484c7e8bed853e4f2b398c906df181be3a)

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

 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