mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-28 18:50:29 +00:00
(runahead) Remove unused variable
This commit is contained in:
parent
425e1d9043
commit
e85f11ea38
@ -147,10 +147,9 @@ failed:
|
|||||||
bool write_file_with_random_name(char **tempDllPath,
|
bool write_file_with_random_name(char **tempDllPath,
|
||||||
const char *retroarchTempPath, const void* data, ssize_t dataSize)
|
const char *retroarchTempPath, const void* data, ssize_t dataSize)
|
||||||
{
|
{
|
||||||
int i;
|
unsigned i;
|
||||||
char numberBuf[32];
|
char numberBuf[32];
|
||||||
bool okay = false;
|
bool okay = false;
|
||||||
const int maxAttempts = 30;
|
|
||||||
const char *prefix = "tmp";
|
const char *prefix = "tmp";
|
||||||
time_t timeValue = time(NULL);
|
time_t timeValue = time(NULL);
|
||||||
unsigned int numberValue = (unsigned int)timeValue;
|
unsigned int numberValue = (unsigned int)timeValue;
|
||||||
|
Loading…
Reference in New Issue
Block a user