mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 18:40:43 +03:00
Fix gcc c90 compliance warnings
Fix non-c90 compliant code, for the most part these changes simply deal with where a particular variable is declared. Under c90 it must alway be done at the very start of a block. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
This commit is contained in:
+2
-2
@@ -1478,8 +1478,8 @@ sa_find_idx_tab(objset_t *os, dmu_object_type_t bonustype, void *data)
|
||||
|
||||
/* Verify header size is consistent with layout information */
|
||||
ASSERT(tb);
|
||||
ASSERT(IS_SA_BONUSTYPE(bonustype) &&
|
||||
SA_HDR_SIZE_MATCH_LAYOUT(hdr, tb) || !IS_SA_BONUSTYPE(bonustype) ||
|
||||
ASSERT((IS_SA_BONUSTYPE(bonustype) &&
|
||||
SA_HDR_SIZE_MATCH_LAYOUT(hdr, tb)) || !IS_SA_BONUSTYPE(bonustype) ||
|
||||
(IS_SA_BONUSTYPE(bonustype) && hdr->sa_layout_info == 0));
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user