(Apple) Fix some unused variable warnings
This commit is contained in:
parent
001e4d9073
commit
77f9de47a5
|
@ -223,7 +223,6 @@ static int action_start_core_setting(unsigned type,
|
||||||
static int action_start_playlist_association(unsigned type, const char *label)
|
static int action_start_playlist_association(unsigned type, const char *label)
|
||||||
{
|
{
|
||||||
playlist_t *playlist = playlist_get_cached();
|
playlist_t *playlist = playlist_get_cached();
|
||||||
bool load_playlist = false;
|
|
||||||
|
|
||||||
if (!playlist)
|
if (!playlist)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
|
@ -1937,7 +1937,6 @@ static bool playlist_read_file(
|
||||||
char metadata_line[1024];
|
char metadata_line[1024];
|
||||||
char default_core_path[1024];
|
char default_core_path[1024];
|
||||||
char default_core_name[1024];
|
char default_core_name[1024];
|
||||||
char metadata_char;
|
|
||||||
size_t metadata_counter;
|
size_t metadata_counter;
|
||||||
|
|
||||||
for (i = 0; i < PLAYLIST_ENTRIES; i++)
|
for (i = 0; i < PLAYLIST_ENTRIES; i++)
|
||||||
|
@ -1946,7 +1945,6 @@ static bool playlist_read_file(
|
||||||
metadata_line[0] = '\0';
|
metadata_line[0] = '\0';
|
||||||
default_core_path[0] = '\0';
|
default_core_path[0] = '\0';
|
||||||
default_core_name[0] = '\0';
|
default_core_name[0] = '\0';
|
||||||
metadata_char = 0;
|
|
||||||
metadata_counter = 0;
|
metadata_counter = 0;
|
||||||
|
|
||||||
/* Attempt to read metadata lines at end of file */
|
/* Attempt to read metadata lines at end of file */
|
||||||
|
|
Loading…
Reference in New Issue