]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
crush: whitespace
authorSage Weil <sage.weil@dreamhost.com>
Thu, 8 Dec 2011 16:42:59 +0000 (08:42 -0800)
committerSage Weil <sage.weil@dreamhost.com>
Thu, 8 Dec 2011 16:42:59 +0000 (08:42 -0800)
Signed-off-by: Sage Weil <sage.weil@dreamhost.com>
src/crush/builder.c

index fa64b5021edeecff0c16f6aa1d903ac28775a25a..dcf5a8b64578695ab9d4d965ef18b1560ff644d5 100644 (file)
@@ -31,7 +31,8 @@ void crush_finalize(struct crush_map *map)
        /* calc max_devices */
        map->max_devices = 0;
        for (b=0; b<map->max_buckets; b++) {
-               if (map->buckets[b] == 0) continue;
+               if (map->buckets[b] == 0)
+                       continue;
                for (i=0; i<map->buckets[b]->size; i++)
                        if (map->buckets[b]->items[i] >= map->max_devices)
                                map->max_devices = map->buckets[b]->items[i] + 1;