[SCM] libav/experimental: lagarith: Fix typo in printf format string

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Aug 10 16:02:20 UTC 2014


The following commit has been merged in the experimental branch:
commit 4f4840377f8074c0b8f4c07e5c44226b2d4e79da
Author: Diego Biurrun <diego at biurrun.de>
Date:   Sat Mar 22 18:36:33 2014 +0100

    lagarith: Fix typo in printf format string
    
    libavcodec/lagarith.c:671:16: warning: '#' flag used with ‘%u’ gnu_printf format [-Wformat]

diff --git a/libavcodec/lagarith.c b/libavcodec/lagarith.c
index a4fa6d2..a2b6077 100644
--- a/libavcodec/lagarith.c
+++ b/libavcodec/lagarith.c
@@ -668,7 +668,7 @@ static int lag_decode_frame(AVCodecContext *avctx,
         break;
     default:
         av_log(avctx, AV_LOG_ERROR,
-               "Unsupported Lagarith frame type: %#"PRIu8"\n", frametype);
+               "Unsupported Lagarith frame type: %#"PRIx8"\n", frametype);
         return -1;
     }
 

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list