public inbox for cluster-cvs@sourceware.org
help / color / mirror / Atom feed
From: "Fabio M. Di Nitto" <fabbione@fedoraproject.org>
To: cluster-cvs-relay@redhat.com
Subject: gfs2-utils: master - gfs_control: fix shadow warnings
Date: Tue, 23 Jun 2009 09:46:00 -0000	[thread overview]
Message-ID: <20090623092457.9041812037D@lists.fedorahosted.org> (raw)

Gitweb:        http://git.fedorahosted.org/git/gfs2-utils.git?p=gfs2-utils.git;a=commitdiff;h=5c78d91aac53e02f71826d526a0845851fe4bde3
Commit:        5c78d91aac53e02f71826d526a0845851fe4bde3
Parent:        5cf2af4d9da2e4830e4d36e15e30cc12e1cde598
Author:        David Teigland <teigland@redhat.com>
AuthorDate:    Thu May 7 13:22:29 2009 -0500
Committer:     Fabio M. Di Nitto <fdinitto@redhat.com>
CommitterDate: Tue Jun 23 11:16:07 2009 +0200

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 59befcf..d1a3d3e 100644
--- a/group/gfs_control/main.c
+++ b/group/gfs_control/main.c
@@ -274,9 +274,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++) {
@@ -347,9 +347,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++) {


                 reply	other threads:[~2009-06-23  9:46 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20090623092457.9041812037D@lists.fedorahosted.org \
    --to=fabbione@fedoraproject.org \
    --cc=cluster-cvs-relay@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).