mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 10:37:35 +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:
@@ -162,7 +162,7 @@ int
|
||||
zprop_iter_common(zprop_func func, void *cb, boolean_t show_all,
|
||||
boolean_t ordered, zfs_type_t type)
|
||||
{
|
||||
int i, num_props, size, prop;
|
||||
int i, j, num_props, size, prop;
|
||||
zprop_desc_t *prop_tbl;
|
||||
zprop_desc_t **order;
|
||||
|
||||
@@ -177,7 +177,7 @@ zprop_iter_common(zprop_func func, void *cb, boolean_t show_all,
|
||||
return (ZPROP_CONT);
|
||||
#endif
|
||||
|
||||
for (int j = 0; j < num_props; j++)
|
||||
for (j = 0; j < num_props; j++)
|
||||
order[j] = &prop_tbl[j];
|
||||
|
||||
if (ordered) {
|
||||
|
||||
Reference in New Issue
Block a user