public inbox for cluster-cvs@sourceware.org
help / color / mirror / Atom feed
* cluster: STABLE3 - gfs_control: fix shadow warnings
@ 2009-05-11 15:14 David Teigland
0 siblings, 0 replies; only message in thread
From: David Teigland @ 2009-05-11 15:14 UTC (permalink / raw)
To: cluster-cvs-relay
Gitweb: http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=0bee5b75ac8c6c8dfbf55e3dcd1c6fb70a505fe6
Commit: 0bee5b75ac8c6c8dfbf55e3dcd1c6fb70a505fe6
Parent: 7afa01274dab81e9a03c90850180d893b27ae230
Author: David Teigland <teigland@redhat.com>
AuthorDate: Thu May 7 13:22:29 2009 -0500
Committer: David Teigland <teigland@redhat.com>
CommitterDate: Mon May 11 10:05:07 2009 -0500
gfs_control: fix shadow warnings
cluster-stable3/group/gfs_control/main.c: In function <E2><80><98>show_nodeids<E2>
cluster-stable3/group/gfs_control/main.c:276: warning: declaration of <E2><80><98>n
cluster-stable3/group/gfs_control/main.c:36: warning: shadowed declaration is here
cluster-stable3/group/gfs_control/main.c: In function <E2><80><98>show_all_nodes
cluster-stable3/group/gfs_control/main.c:349: warning: declaration of <E2><80><98>n
cluster-stable3/group/gfs_control/main.c:36: warning: shadowed declaration is here and avoid use of an extra variable
Signed-off-by: David Teigland <teigland@redhat.com>
---
group/gfs_control/main.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/group/gfs_control/main.c b/group/gfs_control/main.c
index d12b47a..071678e 100644
--- a/group/gfs_control/main.c
+++ b/group/gfs_control/main.c
@@ -273,9 +273,9 @@ static const char *condition_str(int cond)
}
}
-static void show_nodeids(int count, struct gfsc_node *nodes)
+static void show_nodeids(int count, struct gfsc_node *nodes_in)
{
- struct gfsc_node *n = nodes;
+ struct gfsc_node *n = nodes_in;
int i;
for (i = 0; i < count; i++) {
@@ -346,9 +346,9 @@ static void show_mg(struct gfsc_mountgroup *mg)
show_nodeids(node_count, nodes);
}
-static void show_all_nodes(int count, struct gfsc_node *nodes)
+static void show_all_nodes(int count, struct gfsc_node *nodes_in)
{
- struct gfsc_node *n = nodes;
+ struct gfsc_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-05-11 15:14 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-05-11 15:14 cluster: STABLE3 - gfs_control: fix shadow warnings David Teigland
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).