mirror of
https://github.com/libretro/RetroArch
synced 2025-04-01 04:20:27 +00:00
Fix Android warnings
This commit is contained in:
parent
e1395abe69
commit
fe3615ba22
@ -899,7 +899,11 @@ static int rarch_main_iterate_http_transfer(void)
|
||||
|
||||
if (!net_http_update(g_extern.http_handle, &pos, &tot))
|
||||
{
|
||||
RARCH_LOG("%.9lu / %.9lu \r", pos, tot);
|
||||
#ifdef _WIN32
|
||||
RARCH_LOG("%.9I64u / %.9I64u \r", (unsigned long long)pos, (unsigned long long)tot);
|
||||
#else
|
||||
RARCH_LOG("%.9llu / %.9llu \r", (unsigned long long)pos, (unsigned long long)tot);
|
||||
#endif
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user