forked from len0rd/rockbox
[BugFix] itoa conflicts with mingw rename to itoa_buf
Change-Id: Ife361f2fd8c8946db5bb2e0e58c0981b2ed3c5f3
This commit is contained in:
parent
ee4591d9e7
commit
50da856992
9 changed files with 45 additions and 46 deletions
|
|
@ -479,7 +479,7 @@ void cfg_to_string(const struct settings_list *setting, char* buf, int buf_len)
|
|||
break; /* we got a value */
|
||||
}
|
||||
|
||||
itoa(buf, buf_len, *(int*)setting->setting);
|
||||
itoa_buf(buf, buf_len, *(int*)setting->setting);
|
||||
break;
|
||||
case F_T_BOOL:
|
||||
cfg_int_to_string(setting, *(bool*)setting->setting, buf, buf_len);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue