From c909bc18280ad8ef38a00672f50c17736a5011c7 Mon Sep 17 00:00:00 2001 From: jdgordon Date: Thu, 24 Apr 2008 08:51:54 +0000 Subject: [PATCH] fix 64bit sim warning git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17235 a1c6a512-1295-4272-9138-f99709370657 --- apps/tagcache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/tagcache.c b/apps/tagcache.c index 8f34b32b0..a2e3c9ca0 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); -- 2.11.4.GIT