mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-26 21:36:26 +00:00
Merge pull request #8021 from orbea/clang
Fix -Wmissing-braces warning with clang.
This commit is contained in:
commit
dd4bf2c41f
@ -928,7 +928,7 @@ static bool playlist_read_file(
|
||||
}
|
||||
else
|
||||
{
|
||||
char buf[PLAYLIST_ENTRIES][1024] = {0};
|
||||
char buf[PLAYLIST_ENTRIES][1024] = {{0}};
|
||||
|
||||
for (i = 0; i < PLAYLIST_ENTRIES; i++)
|
||||
buf[i][0] = '\0';
|
||||
|
Loading…
x
Reference in New Issue
Block a user