]> granicus.if.org Git - zfs/commitdiff
Move int out of for construct for c90 compliance
authorBrian Behlendorf <behlendorf1@llnl.gov>
Thu, 18 Dec 2008 17:01:48 +0000 (09:01 -0800)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Thu, 18 Dec 2008 17:01:48 +0000 (09:01 -0800)
module/zfs/dmu_objset.c

index 7981e06825c472b2d3b896d0b48dd1be9f6c9b77..2e1e8f6928a83e93de590c272bac92c7e8bd5222 100644 (file)
@@ -843,6 +843,8 @@ dmu_objset_sync_dnodes(list_t *list, dmu_tx_t *tx)
 static void
 ready(zio_t *zio, arc_buf_t *abuf, void *arg)
 {
+       int i;
+
        blkptr_t *bp = zio->io_bp;
        blkptr_t *bp_orig = &zio->io_bp_orig;
        objset_impl_t *os = arg;
@@ -856,7 +858,7 @@ ready(zio_t *zio, arc_buf_t *abuf, void *arg)
         * Update rootbp fill count.
         */
        bp->blk_fill = 1;       /* count the meta-dnode */
-       for (int i = 0; i < dnp->dn_nblkptr; i++)
+       for (i = 0; i < dnp->dn_nblkptr; i++)
                bp->blk_fill += dnp->dn_blkptr[i].blk_fill;
 
        if (zio->io_flags & ZIO_FLAG_IO_REWRITE) {