cosmetics: whitespace

Originally committed as revision 11028 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Aurelien Jacobs 2007-11-14 20:31:56 +00:00
parent 0b77d7d642
commit d638424b8a
1 changed files with 2 additions and 2 deletions

View File

@ -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);