mirror of
https://github.com/libretro/RetroArch
synced 2025-03-28 19:20:35 +00:00
Silence warning - ret was never used
This commit is contained in:
parent
89e4cac3f1
commit
9cd19d4944
@ -755,10 +755,9 @@ static int action_get_title_generic(char *s, size_t len,
|
||||
{
|
||||
if (!string_is_empty(path))
|
||||
{
|
||||
bool ret = false;
|
||||
struct string_list list_path = {0};
|
||||
string_list_initialize(&list_path);
|
||||
if ((ret = string_split_noalloc(&list_path, path, "|")))
|
||||
if (string_split_noalloc(&list_path, path, "|"))
|
||||
{
|
||||
char elem0_path[255];
|
||||
elem0_path[0] = '\0';
|
||||
|
Loading…
x
Reference in New Issue
Block a user