mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 13:12:37 -05:00
Fix 64 bit warnings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12424 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
4772943243
commit
8d7a364063
1 changed files with 2 additions and 2 deletions
|
|
@ -169,13 +169,13 @@ static const struct menu_item_ex *band_items[3][3] = {
|
|||
char* centerband_get_name(int selected_item, void * data, char *buffer)
|
||||
{
|
||||
(void)selected_item;
|
||||
int band = (int)data;
|
||||
int band = (intptr_t)data;
|
||||
snprintf(buffer, MAX_PATH, str(LANG_EQUALIZER_BAND_PEAK), band);
|
||||
return buffer;
|
||||
}
|
||||
int do_center_band_menu(void* param)
|
||||
{
|
||||
int band = (int)param;
|
||||
int band = (intptr_t)param;
|
||||
struct menu_item_ex menu;
|
||||
struct menu_callback_with_desc cb_and_desc;
|
||||
char desc[MAX_PATH];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue