summaryrefslogtreecommitdiff
path: root/apps/main_menu.c
diff options
context:
space:
mode:
authorJean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com>2005-02-11 18:41:40 +0000
committerJean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com>2005-02-11 18:41:40 +0000
commit2860c5e70ae6c4ded2a662b8eed5996e381ed014 (patch)
tree50292902d4ab7dfb64447cfbf861acc3df04a153 /apps/main_menu.c
parent6dca87e60cb54073c5a0b26b233bfc239b763d6b (diff)
downloadrockbox-2860c5e70ae6c4ded2a662b8eed5996e381ed014.tar.gz
rockbox-2860c5e70ae6c4ded2a662b8eed5996e381ed014.zip
long policy
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5914 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/main_menu.c')
-rw-r--r--apps/main_menu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/main_menu.c b/apps/main_menu.c
index a2694adc39..ff09568509 100644
--- a/apps/main_menu.c
+++ b/apps/main_menu.c
@@ -139,7 +139,7 @@ bool show_info(void)
139{ 139{
140 char s[32], s2[32]; 140 char s[32], s2[32];
141 /* avoid overflow for 8MB mod :) was: ((mp3end - mp3buf) * 1000) / 0x100000; */ 141 /* avoid overflow for 8MB mod :) was: ((mp3end - mp3buf) * 1000) / 0x100000; */
142 int buflen = ((mp3end - mp3buf) * 100) / 0x19999; 142 long buflen = ((mp3end - mp3buf) * 100) / 0x19999;
143 int integer, decimal; 143 int integer, decimal;
144 bool done = false; 144 bool done = false;
145 int key; 145 int key;