From 567ea5464c35d577de0c34df58e8171c297a17b9 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 15 Apr 2009 19:12:48 +0000 Subject: [PATCH] corosync-fplay.c: avoid shadowin: s/index/idx/ * tools/corosync-fplay.c (printer_totempg_mcast_fits): git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@2072 fd59a12c-fef9-0310-b244-a6a79926bd2f --- tools/corosync-fplay.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/corosync-fplay.c b/tools/corosync-fplay.c index 9eed9f7c..2c53383c 100644 --- a/tools/corosync-fplay.c +++ b/tools/corosync-fplay.c @@ -184,7 +184,7 @@ static void printer_totemsrp_delv (const void **record) static void printer_totempg_mcast_fits (const void **record) { - const unsigned int *index = record[0]; + const unsigned int *idx = record[0]; const unsigned int *iov_len = record[1]; const unsigned int *copy_len = record[2]; const unsigned int *fragment_size = record[3]; @@ -193,7 +193,7 @@ static void printer_totempg_mcast_fits (const void **record) const unsigned char *next_fragment = record[6]; printf ("totempg_mcast index=[%d] iov_len=[%d] copy_len=[%d] fragment_size=[%d] max_packet_size=[%d] copy_base=[%d] next_fragment[%d]\n", - *index, *iov_len, *copy_len, *fragment_size, *max_packet_size, *copy_base, *next_fragment); + *idx, *iov_len, *copy_len, *fragment_size, *max_packet_size, *copy_base, *next_fragment); } static void sync_printer_service_process (const void **record)