mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-24 19:28:53 +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:
@@ -964,11 +964,13 @@ dsl_dir_diduse_space(dsl_dir_t *dd, dd_used_t type,
|
||||
dd->dd_phys->dd_used_breakdown[type] >= -used);
|
||||
dd->dd_phys->dd_used_breakdown[type] += used;
|
||||
#ifdef DEBUG
|
||||
dd_used_t t;
|
||||
uint64_t u = 0;
|
||||
for (t = 0; t < DD_USED_NUM; t++)
|
||||
u += dd->dd_phys->dd_used_breakdown[t];
|
||||
ASSERT3U(u, ==, dd->dd_phys->dd_used_bytes);
|
||||
{
|
||||
dd_used_t t;
|
||||
uint64_t u = 0;
|
||||
for (t = 0; t < DD_USED_NUM; t++)
|
||||
u += dd->dd_phys->dd_used_breakdown[t];
|
||||
ASSERT3U(u, ==, dd->dd_phys->dd_used_bytes);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
if (needlock)
|
||||
|
||||
Reference in New Issue
Block a user