public inbox for cluster-cvs@sourceware.org
help / color / mirror / Atom feed
* dlm: master - dlm_tool: fix shadow warnings
@ 2009-06-23  8:46 Fabio M. Di Nitto
  0 siblings, 0 replies; only message in thread
From: Fabio M. Di Nitto @ 2009-06-23  8:46 UTC (permalink / raw)
  To: cluster-cvs-relay

Gitweb:        http://git.fedorahosted.org/git/dlm.git?p=dlm.git;a=commitdiff;h=c2048b9fb6b342ce754f479cbda38728de623617
Commit:        c2048b9fb6b342ce754f479cbda38728de623617
Parent:        a557ccdf0ef418f7e3a84051d5becb98c866327d
Author:        David Teigland <teigland@redhat.com>
AuthorDate:    Thu May 7 13:20:52 2009 -0500
Committer:     Fabio M. Di Nitto <fdinitto@redhat.com>
CommitterDate: Tue Jun 23 09:43:13 2009 +0200

dlm_tool: fix shadow warnings

cluster-stable3/dlm/tool/main.c: In function <E2><80><98>show_nodeids<E2>
cluster-stable3/dlm/tool/main.c:1082: warning: declaration of <E2><80><98>no
cluster-stable3/dlm/tool/main.c:71: warning: shadowed declaration is here
cluster-stable3/dlm/tool/main.c: In function <E2><80><98>show_all_nodes<E2>
cluster-stable3/dlm/tool/main.c:1156: warning: declaration of <E2><80><98>no
cluster-stable3/dlm/tool/main.c:71: warning: shadowed declaration is here

Signed-off-by: David Teigland <teigland@redhat.com>
---
 dlm/tool/main.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlm/tool/main.c b/dlm/tool/main.c
index 9fb008a..a972896 100644
--- a/dlm/tool/main.c
+++ b/dlm/tool/main.c
@@ -1079,9 +1079,9 @@ static int node_compare(const void *va, const void *vb)
 	return a->nodeid - b->nodeid;
 }
 
-static void show_nodeids(int count, struct dlmc_node *nodes)
+static void show_nodeids(int count, struct dlmc_node *nodes_in)
 {
-	struct dlmc_node *n = nodes;
+	struct dlmc_node *n = nodes_in;
 	int i;
 
 	for (i = 0; i < count; i++) {
@@ -1153,9 +1153,9 @@ static int member_int(struct dlmc_node *n)
 	return 0;
 }
 
-static void show_all_nodes(int count, struct dlmc_node *nodes)
+static void show_all_nodes(int count, struct dlmc_node *nodes_in)
 {
-	struct dlmc_node *n = nodes;
+	struct dlmc_node *n = nodes_in;
 	int i;
 
 	for (i = 0; i < count; i++) {


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-06-23  8:46 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-06-23  8:46 dlm: master - dlm_tool: fix shadow warnings Fabio M. Di Nitto

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).