mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
nir: Fix gnu-empty-initializer warning
Found with clang 14 Reviewed-by: Marek Olšák <marek.olsak@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37615>
This commit is contained in:
parent
318b020831
commit
05ea82a766
1 changed files with 1 additions and 1 deletions
|
|
@ -2349,7 +2349,7 @@ struct blob
|
|||
nir_validate_progress_setup(nir_shader *shader)
|
||||
{
|
||||
if (!NIR_DEBUG(PROGRESS_VALIDATION))
|
||||
return (struct blob){};
|
||||
return (struct blob){0};
|
||||
|
||||
struct blob blob_before;
|
||||
blob_init(&blob_before);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue