diff options
author | Miika Pekkarinen <miipekk@ihme.org> | 2007-02-15 19:08:21 +0000 |
---|---|---|
committer | Miika Pekkarinen <miipekk@ihme.org> | 2007-02-15 19:08:21 +0000 |
commit | 9745bbc1df4b82a6f43dabc915ab7823d2889d5b (patch) | |
tree | 580cd54f1f40fc2500e79cd1f6580f2dfeb43c45 | |
parent | 51e885d5977c786266329bb2cf93ceb7d8665b12 (diff) |
Fixed the incorrect APE header format define cause parsing to fail.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12317 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/metadata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/metadata.c b/apps/metadata.c index fef8111127..0c7c69841b 100644 --- a/apps/metadata.c +++ b/apps/metadata.c @@ -42,7 +42,7 @@ enum tagtype { TAGTYPE_APE = 1, TAGTYPE_VORBIS }; #endif #define APETAG_HEADER_LENGTH 32 -#define APETAG_HEADER_FORMAT "8llll" +#define APETAG_HEADER_FORMAT "8llll8" #define APETAG_ITEM_HEADER_FORMAT "ll" #define APETAG_ITEM_TYPE_MASK 3 |