diff options
| author | Jean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com> | 2005-02-11 18:41:40 +0000 |
|---|---|---|
| committer | Jean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com> | 2005-02-11 18:41:40 +0000 |
| commit | 2860c5e70ae6c4ded2a662b8eed5996e381ed014 (patch) | |
| tree | 50292902d4ab7dfb64447cfbf861acc3df04a153 /apps/main_menu.c | |
| parent | 6dca87e60cb54073c5a0b26b233bfc239b763d6b (diff) | |
| download | rockbox-2860c5e70ae6c4ded2a662b8eed5996e381ed014.zip rockbox-2860c5e70ae6c4ded2a662b8eed5996e381ed014.tar.gz rockbox-2860c5e70ae6c4ded2a662b8eed5996e381ed014.tar.bz2 rockbox-2860c5e70ae6c4ded2a662b8eed5996e381ed014.tar.xz | |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/main_menu.c b/apps/main_menu.c index a2694ad..ff09568 100644 --- a/apps/main_menu.c +++ b/apps/main_menu.c @@ -139,7 +139,7 @@ bool show_info(void) { char s[32], s2[32]; /* avoid overflow for 8MB mod :) was: ((mp3end - mp3buf) * 1000) / 0x100000; */ - int buflen = ((mp3end - mp3buf) * 100) / 0x19999; + long buflen = ((mp3end - mp3buf) * 100) / 0x19999; int integer, decimal; bool done = false; int key; |