summaryrefslogtreecommitdiffstats
path: root/module/zfs/vdev_raidz.c
diff options
context:
space:
mode:
authorBrian Behlendorf <[email protected]>2008-12-19 11:03:54 -0800
committerBrian Behlendorf <[email protected]>2008-12-19 11:03:54 -0800
commit9041f66bad2ea642339e71f50d63445f07474c7b (patch)
tree886c76f34650b547600dcaf6a5f8ae9067244d49 /module/zfs/vdev_raidz.c
parent66e0d59024a0be49c704106e2a432634ae18e712 (diff)
Fix all instances of for (int i;;) {} that were easily found
Diffstat (limited to 'module/zfs/vdev_raidz.c')
-rw-r--r--module/zfs/vdev_raidz.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/zfs/vdev_raidz.c b/module/zfs/vdev_raidz.c
index 69e314468..5bc4781fb 100644
--- a/module/zfs/vdev_raidz.c
+++ b/module/zfs/vdev_raidz.c
@@ -775,9 +775,9 @@ static uint64_t raidz_corrected_pq;
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);