diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2008-04-24 08:51:54 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2008-04-24 08:51:54 +0000 |
| commit | 5f3356b942a23e8dd0907b416848439f1445cb17 (patch) | |
| tree | 04ed56c20e9a16d63b29d0eba58e2cbc9f249656 | |
| parent | 7c0a8e1d4c1dc26e6505fab468cb2317a7daeb7e (diff) | |
| download | rockbox-5f3356b942a23e8dd0907b416848439f1445cb17.zip rockbox-5f3356b942a23e8dd0907b416848439f1445cb17.tar.gz rockbox-5f3356b942a23e8dd0907b416848439f1445cb17.tar.bz2 rockbox-5f3356b942a23e8dd0907b416848439f1445cb17.tar.xz | |
fix 64bit sim warning
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17235 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/tagcache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tagcache.c b/apps/tagcache.c index 8f34b32..a2e3c9c 100644 --- a/apps/tagcache.c +++ b/apps/tagcache.c @@ -3544,7 +3544,7 @@ static bool delete_entry(long idx_id) if (tc_stat.ramcache && tag != tag_filename) { struct tagfile_entry *tfe; - long *seek = &hdr->indices[idx_id].tag_seek[tag]; + int32_t *seek = &hdr->indices[idx_id].tag_seek[tag]; tfe = (struct tagfile_entry *)&hdr->tags[tag][*seek]; *seek = crc_32(tfe->tag_data, strlen(tfe->tag_data), 0xffffffff); |