mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 21:22:39 -05:00
Fix 64 bit warning.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12319 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e393b8e359
commit
1f1da8e4ae
1 changed files with 1 additions and 1 deletions
|
|
@ -99,7 +99,7 @@ static int reset_settings(void)
|
||||||
}
|
}
|
||||||
static int write_settings_file(void* param)
|
static int write_settings_file(void* param)
|
||||||
{
|
{
|
||||||
return settings_save_config((int)param);
|
return settings_save_config((intptr_t)param);
|
||||||
}
|
}
|
||||||
|
|
||||||
MENUITEM_FUNCTION_WPARAM(browse_configs, ID2P(LANG_CUSTOM_CFG),
|
MENUITEM_FUNCTION_WPARAM(browse_configs, ID2P(LANG_CUSTOM_CFG),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue