diff options
| author | Brian Behlendorf <behlendorf1@llnl.gov> | 2010-08-26 16:52:39 +0000 |
|---|---|---|
| committer | Brian Behlendorf <behlendorf1@llnl.gov> | 2010-08-27 22:28:32 +0000 |
| commit | d6320ddb78fa89c4d0fc2af00ae53c7c70992f96 (patch) | |
| tree | 8a50c251b955ae31a670835ac0c90cfba6d28752 /module/zcommon | |
| parent | c5b3a7bbcc321846bb15ff73c6fd6f1c483b6aa6 (diff) | |
Diffstat (limited to 'module/zcommon')
| -rw-r--r-- | module/zcommon/zprop_common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/zcommon/zprop_common.c b/module/zcommon/zprop_common.c index 0bbf20d4f02c..df2fdeab8ba1 100644 --- a/module/zcommon/zprop_common.c +++ b/module/zcommon/zprop_common.c @@ -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) { |
