mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Kill some warnings
This commit is contained in:
parent
43c25383e3
commit
77d0745f38
2 changed files with 3 additions and 3 deletions
|
@ -197,7 +197,7 @@ static bool command_read_ram(const char *arg)
|
|||
cheevos_var_t var;
|
||||
const uint8_t * data;
|
||||
unsigned nbytes;
|
||||
int i;
|
||||
unsigned i;
|
||||
char reply[256];
|
||||
char *reply_at = NULL;
|
||||
|
||||
|
|
|
@ -851,12 +851,12 @@ static int menu_displaylist_parse_system_info(menu_displaylist_info_t *info)
|
|||
memory_total
|
||||
);
|
||||
snprintf(tmp2, sizeof(tmp2),
|
||||
"Memory (in megabytes) : %1u/%1u MB",
|
||||
"Memory (in megabytes) : %lu/%lu MB",
|
||||
bytes_to_mb(memory_used),
|
||||
bytes_to_mb(memory_total)
|
||||
);
|
||||
snprintf(tmp3, sizeof(tmp3),
|
||||
"Memory (in gigabytes) : %1u/%1u GB",
|
||||
"Memory (in gigabytes) : %lu/%lu GB",
|
||||
bytes_to_gb(memory_used),
|
||||
bytes_to_gb(memory_total)
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue