projects
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
57f0960
)
lagarith: Fix typo in printf format string
author
Diego Biurrun
<diego@biurrun.de>
Sat, 22 Mar 2014 17:36:33 +0000
(18:36 +0100)
committer
Diego Biurrun
<diego@biurrun.de>
Sat, 22 Mar 2014 17:36:33 +0000
(18:36 +0100)
libavcodec/lagarith.c:671:16: warning: '#' flag used with ā%uā gnu_printf format [-Wformat]
libavcodec/lagarith.c
patch
|
blob
|
blame
|
history
diff --git
a/libavcodec/lagarith.c
b/libavcodec/lagarith.c
index
a4fa6d2
..
a2b6077
100644
(file)
--- 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: %#"PRI
u
8"\n", frametype);
+ "Unsupported Lagarith frame type: %#"PRI
x
8"\n", frametype);
return -1;
}