[FFmpeg-devel] [PATCH 8/8] avcodec/dvdsubdec: fix typo in dlog message
Ganesh Ajjanagadde
gajjanagadde at gmail.com
Fri Dec 4 15:39:43 CET 2015
Likely accidental in 764900d6458a2f79166ff91df4f20ad39cd6acec.
Fixes: CID 1341578.
Signed-off-by: Ganesh Ajjanagadde <gajjanagadde at gmail.com>
---
libavcodec/dvdsubdec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/dvdsubdec.c b/libavcodec/dvdsubdec.c
index 77da00a..dccabe4 100644
--- a/libavcodec/dvdsubdec.c
+++ b/libavcodec/dvdsubdec.c
@@ -318,7 +318,7 @@ static int decode_dvd_subtitles(DVDSubContext *ctx, AVSubtitle *sub_header,
goto fail;
offset1 = AV_RB16(buf + pos);
offset2 = AV_RB16(buf + pos + 2);
- ff_dlog(NULL, "offset1=0x%04"PRIx64" offset2=0x%04%"PRIx64"\n", offset1, offset2);
+ ff_dlog(NULL, "offset1=0x%04"PRIx64" offset2=0x%04"PRIx64"\n", offset1, offset2);
pos += 4;
break;
case 0x86:
--
2.6.3
More information about the ffmpeg-devel
mailing list