summaryrefslogtreecommitdiff
path: root/apps/codecs/shorten.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2006-03-22 19:51:40 +0000
committerJens Arnold <amiconn@rockbox.org>2006-03-22 19:51:40 +0000
commitec70f29f1e2fb6e884429a28b6be5b2489c7a66a (patch)
treee4ff88fb1ea9424dc35c624306b9d2003746e8ff /apps/codecs/shorten.c
parentaac8d6917eed6acefc01960529af2e8799d83334 (diff)
downloadrockbox-ec70f29f1e2fb6e884429a28b6be5b2489c7a66a.tar.gz
rockbox-ec70f29f1e2fb6e884429a28b6be5b2489c7a66a.zip
Fix remaining warnings in 64bit simulator builds
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9196 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/shorten.c')
-rw-r--r--apps/codecs/shorten.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/shorten.c b/apps/codecs/shorten.c
index 3edc143773..6053742562 100644
--- a/apps/codecs/shorten.c
+++ b/apps/codecs/shorten.c
@@ -96,7 +96,7 @@ next_track:
96 } 96 }
97 97
98 ci->id3->frequency = sc.sample_rate; 98 ci->id3->frequency = sc.sample_rate;
99 ci->configure(DSP_SET_FREQUENCY, (long *)(sc.sample_rate)); 99 ci->configure(DSP_SET_FREQUENCY, (long *)(long)(sc.sample_rate));
100 100
101 if (sc.sample_rate) { 101 if (sc.sample_rate) {
102 ci->id3->length = (sc.totalsamples / sc.sample_rate) * 1000; 102 ci->id3->length = (sc.totalsamples / sc.sample_rate) * 1000;