]> git.sesse.net Git - vlc/commitdiff
mft: fix format string
authorRémi Denis-Courmont <remi@remlab.net>
Sat, 11 Oct 2014 07:12:10 +0000 (10:12 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Sat, 11 Oct 2014 07:12:56 +0000 (10:12 +0300)
modules/codec/mft.c

index 3ece8899f159cdf63944ee9a3b534739c1ec7482..143a3085d10cd099c8884bc2bb0db49361257d02 100644 (file)
@@ -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;
     }