svn commit: r275491 - stable/10/contrib/hyperv/tools
Xin LI
delphij at FreeBSD.org
Thu Dec 4 23:27:30 UTC 2014
Author: delphij
Date: Thu Dec 4 23:27:29 2014
New Revision: 275491
URL: https://svnweb.freebsd.org/changeset/base/275491
Log:
MFC r274370:
Rename variable name from 'index' to 'idx' to avoid shadowing index(3).
Noticed by: dim
Modified:
stable/10/contrib/hyperv/tools/hv_kvp_daemon.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/contrib/hyperv/tools/hv_kvp_daemon.c
==============================================================================
--- stable/10/contrib/hyperv/tools/hv_kvp_daemon.c Thu Dec 4 23:26:15 2014 (r275490)
+++ stable/10/contrib/hyperv/tools/hv_kvp_daemon.c Thu Dec 4 23:27:29 2014 (r275491)
@@ -511,25 +511,25 @@ kvp_get_value(int pool, __u8 *key, int k
static int
-kvp_pool_enumerate(int pool, int index, __u8 *key, int key_size,
+kvp_pool_enumerate(int pool, int idx, __u8 *key, int key_size,
__u8 *value, int value_size)
{
struct kvp_record *record;
KVP_LOG(LOG_DEBUG, "kvp_pool_enumerate: pool = %d, index = %d\n,",
- pool, index);
+ pool, idx);
/* First update our in-memory state first. */
kvp_update_mem_state(pool);
record = kvp_pools[pool].records;
/* Index starts with 0 */
- if (index >= kvp_pools[pool].num_records) {
+ if (idx >= kvp_pools[pool].num_records) {
return (1);
}
- memcpy(key, record[index].key, key_size);
- memcpy(value, record[index].value, value_size);
+ memcpy(key, record[idx].key, key_size);
+ memcpy(value, record[idx].value, value_size);
return (0);
}
More information about the svn-src-stable-10
mailing list