1
0
Fork 0
forked from len0rd/rockbox

Cast some more to keep both 32 bit and 64 bit simulator platforms happy.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12819 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2007-03-17 10:50:58 +00:00
parent 341b03a242
commit bd5c0ad7bb
10 changed files with 39 additions and 27 deletions

View file

@ -179,7 +179,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
filesize = rb->filesize(fIndex); /* get filesize */
DEBUGF("Filesize: %d bytes = %d words \n", filesize,
(filesize / sizeof(struct stWord)));
(filesize / (int)sizeof(struct stWord)));
/* for the searching algorithm */
high = filesize / sizeof( struct stWord );