projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bd548b9
)
remove unnecessary -1 from snprintf len
author
Andreas Öman
<andreas@lonelycoder.com>
Wed, 14 Nov 2007 06:33:35 +0000
(06:33 +0000)
committer
Andreas Öman
<andreas@lonelycoder.com>
Wed, 14 Nov 2007 06:33:35 +0000
(06:33 +0000)
Originally committed as revision 11009 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavformat/mp3.c
patch
|
blob
|
history
diff --git
a/libavformat/mp3.c
b/libavformat/mp3.c
index
540adfc
..
d6d5b2c
100644
(file)
--- a/
libavformat/mp3.c
+++ b/
libavformat/mp3.c
@@
-585,7
+585,7
@@
static int mp3_write_header(struct AVFormatContext *s)
char yeartxt[10];
if(s->track)
- snprintf(tracktxt, sizeof(tracktxt)
- 1
, "%d", s->track);
+ snprintf(tracktxt, sizeof(tracktxt)
, "%d", s->track);
if(s->year)
snprintf( yeartxt, sizeof(yeartxt) , "%d", s->year );