Cleanup: silence Clang missing-braces warning.

This commit is contained in:
Ankit Meel 2021-10-14 10:06:16 +05:30
parent a059d16f65
commit 5fec6eda55
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ bUUID BLI_uuid_generate_random()
bUUID BLI_uuid_nil(void)
{
const bUUID nil = {0, 0, 0, 0, 0, 0};
const bUUID nil = {0, 0, 0, 0, 0, {0}};
return nil;
}