This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
lagarith: Fix typo in printf format string
libavcodec/lagarith.c:671:16: warning: '#' flag used with ‘%u’ gnu_printf format [-Wformat]
tags/n2.3
Diego Biurrun
12 years ago
parent
57f09608e1
commit
4f4840377f
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/lagarith.c
+ 1
- 1
libavcodec/lagarith.c
View File
@@ -668,7 +668,7 @@ static int lag_decode_frame(AVCodecContext *avctx,
break;
default:
av_log(avctx, AV_LOG_ERROR,
"Unsupported Lagarith frame type: %#"PRI
u
8"\n", frametype);
"Unsupported Lagarith frame type: %#"PRI
x
8"\n", frametype);
return -1;
}
Write
Preview
Loading…
Cancel
Save