diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-06-11 20:45:35 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-06-11 20:45:35 +0000 |
commit | 1d4b1bf2f6a70dcfbe27cbfd4c2ba8b9eb3890b7 (patch) | |
tree | 5240ff5b97c1b77612a061eabd16352bf1a4b927 | |
parent | 477ffff21808a53f9a83b8056661654cada66e49 (diff) | |
download | ffmpeg-1d4b1bf2f6a70dcfbe27cbfd4c2ba8b9eb3890b7.tar.gz |
cosmetics: Prettyprint one more line to have columns line up.
Originally committed as revision 19158 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/id3v2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c index 9056633eec..6a3ecb9e75 100644 --- a/libavformat/id3v2.c +++ b/libavformat/id3v2.c @@ -33,7 +33,7 @@ int ff_id3v2_match(const uint8_t *buf) (buf[6] & 0x80) == 0 && (buf[7] & 0x80) == 0 && (buf[8] & 0x80) == 0 && - (buf[9] & 0x80) == 0; + (buf[9] & 0x80) == 0; } int ff_id3v2_tag_len(const uint8_t * buf) |