diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-04-24 11:08:07 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-04-24 11:08:07 +0000 |
commit | bd0854596a3a405b4217f00caaae201ee07dc225 (patch) | |
tree | 171b399374cbfd99a8b5feb3f772d93015446dd2 /libavcodec | |
parent | 12e1166234461fd1fafb4410ff69c000d2d1ec9a (diff) | |
download | ffmpeg-bd0854596a3a405b4217f00caaae201ee07dc225.tar.gz |
typo fix by ("Todd.Kirby" doubleshot pacbell net)
Originally committed as revision 4150 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/rpza.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rpza.c b/libavcodec/rpza.c index 317c240b9b..6b1510a4bf 100644 --- a/libavcodec/rpza.c +++ b/libavcodec/rpza.c @@ -92,7 +92,7 @@ static void rpza_decode_stream(RpzaContext *s) /* First byte is always 0xe1. Warn if it's different */ if (s->buf[stream_ptr] != 0xe1) - av_log(s->avctx, AV_LOG_ERROR, "First chunk byte is 0x%02x instead of 0x1e\n", + av_log(s->avctx, AV_LOG_ERROR, "First chunk byte is 0x%02x instead of 0xe1\n", s->buf[stream_ptr]); /* Get chunk size, ingnoring first byte */ |