mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Get rid of unused variable
This commit is contained in:
parent
3680846c24
commit
f2f3374760
1 changed files with 2 additions and 3 deletions
|
@ -156,9 +156,8 @@ static int cue_get_serial(database_state_handle_t *db_state,
|
|||
int rv;
|
||||
char track_path[PATH_MAX_LENGTH];
|
||||
int32_t offset = 0;
|
||||
const char* system_name = NULL;
|
||||
|
||||
rv = find_first_data_track(name, &offset, track_path, PATH_MAX_LENGTH);
|
||||
int rv = find_first_data_track(name, &offset, track_path, PATH_MAX_LENGTH);
|
||||
|
||||
if (rv < 0)
|
||||
{
|
||||
RARCH_LOG("Could not find valid data track: %s\n", strerror(-rv));
|
||||
|
|
Loading…
Add table
Reference in a new issue