diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2007-11-14 20:31:56 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2007-11-14 20:31:56 +0000 |
commit | d638424b8a61851830602eafa00f49c9fa1fea4a (patch) | |
tree | 2a3b6f69b55df96611e8b517315416031589b714 /libavformat | |
parent | 0b77d7d6423bef2cc80580b5050a33b83ec86fc2 (diff) | |
download | ffmpeg-streaming-d638424b8a61851830602eafa00f49c9fa1fea4a.zip ffmpeg-streaming-d638424b8a61851830602eafa00f49c9fa1fea4a.tar.gz |
cosmetics: whitespace
Originally committed as revision 11028 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/mp3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/mp3.c b/libavformat/mp3.c index d6d5b2c..9619fb1 100644 --- a/libavformat/mp3.c +++ b/libavformat/mp3.c @@ -585,9 +585,9 @@ static int mp3_write_header(struct AVFormatContext *s) char yeartxt[10]; if(s->track) - snprintf(tracktxt, sizeof(tracktxt) , "%d", s->track); + snprintf(tracktxt, sizeof(tracktxt), "%d", s->track); if(s->year) - snprintf( yeartxt, sizeof(yeartxt) , "%d", s->year ); + snprintf( yeartxt, sizeof(yeartxt) , "%d", s->year ); if(s->title[0]) totlen += 11 + strlen(s->title); if(s->author[0]) totlen += 11 + strlen(s->author); |