diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2009-03-06 15:21:58 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2009-03-06 15:21:58 +0000 |
| commit | 2b6e4adbd2cd2880e4d94d9519361617bfe8e755 (patch) | |
| tree | 49bd5355328abdb6bbe1103d95de199a23dcadd5 /apps/tagcache.c | |
| parent | 6f030a01c97063b4ec0e1c30a62016cbfd8eea05 (diff) | |
| download | rockbox-2b6e4adbd2cd2880e4d94d9519361617bfe8e755.zip rockbox-2b6e4adbd2cd2880e4d94d9519361617bfe8e755.tar.gz rockbox-2b6e4adbd2cd2880e4d94d9519361617bfe8e755.tar.bz2 rockbox-2b6e4adbd2cd2880e4d94d9519361617bfe8e755.tar.xz | |
Fix FS#9977 - Thanks to Brian Sutherland for intensive testing and effort
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20214 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tagcache.c')
| -rw-r--r-- | apps/tagcache.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/tagcache.c b/apps/tagcache.c index 8e14b9f..e7f3294 100644 --- a/apps/tagcache.c +++ b/apps/tagcache.c @@ -166,8 +166,8 @@ static struct mutex command_queue_mutex; /* Variable-length tag entry in tag files. */ struct tagfile_entry { - short tag_length; /* Length of the data in bytes including '\0' */ - short idx_id; /* Corresponding entry location in index file of not unique tags */ + int32_t tag_length; /* Length of the data in bytes including '\0' */ + int32_t idx_id; /* Corresponding entry location in index file of not unique tags */ char tag_data[0]; /* Begin of the tag data */ }; @@ -192,7 +192,7 @@ struct master_header { }; /* For the endianess correction */ -static const char *tagfile_entry_ec = "ss"; +static const char *tagfile_entry_ec = "ll"; /** Note: This should be (1 + TAG_COUNT) amount of l's. */ |