]> granicus.if.org Git - zfs/commitdiff
Resolve shadow conflict
authorBrian Behlendorf <behlendorf1@llnl.gov>
Wed, 17 Dec 2008 20:42:17 +0000 (12:42 -0800)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Wed, 17 Dec 2008 20:42:17 +0000 (12:42 -0800)
module/zcommon/zfs_prop.c

index effd2dba70922bd783ead5c9dfd1fa0c59671d1d..b273c6ef90577a8f5c109c94cd35f65b499c1b87 100644 (file)
@@ -372,15 +372,15 @@ zfs_prop_user(const char *name)
  * (strings) and internal representation (uint64_t).
  */
 int
-zfs_prop_string_to_index(zfs_prop_t prop, const char *string, uint64_t *index)
+zfs_prop_string_to_index(zfs_prop_t prop, const char *string, uint64_t *idx)
 {
-       return (zprop_string_to_index(prop, string, index, ZFS_TYPE_DATASET));
+       return (zprop_string_to_index(prop, string, idx, ZFS_TYPE_DATASET));
 }
 
 int
-zfs_prop_index_to_string(zfs_prop_t prop, uint64_t index, const char **string)
+zfs_prop_index_to_string(zfs_prop_t prop, uint64_t idx, const char **string)
 {
-       return (zprop_index_to_string(prop, index, string, ZFS_TYPE_DATASET));
+       return (zprop_index_to_string(prop, idx, string, ZFS_TYPE_DATASET));
 }
 
 /*