mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-24 03:08:51 +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:
@@ -1692,9 +1692,9 @@ static uint64_t raidz_corrected[1 << VDEV_RAIDZ_MAXPARITY];
|
||||
static int
|
||||
vdev_raidz_worst_error(raidz_map_t *rm)
|
||||
{
|
||||
int error = 0;
|
||||
int c, error = 0;
|
||||
|
||||
for (int c = 0; c < rm->rm_cols; c++)
|
||||
for (c = 0; c < rm->rm_cols; c++)
|
||||
error = zio_worst_error(error, rm->rm_col[c].rc_error);
|
||||
|
||||
return (error);
|
||||
|
||||
Reference in New Issue
Block a user