public inbox for cluster-cvs@sourceware.org
help / color / mirror / Atom feed
From: David Teigland <teigland@fedoraproject.org>
To: cluster-cvs-relay@redhat.com
Subject: cluster: STABLE3 - dlm_tool: fix shadow warnings
Date: Mon, 11 May 2009 15:44:00 -0000	[thread overview]
Message-ID: <20090511151332.097AB12022C@lists.fedorahosted.org> (raw)

Gitweb:        http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=7afa01274dab81e9a03c90850180d893b27ae230
Commit:        7afa01274dab81e9a03c90850180d893b27ae230
Parent:        9455ac4820ebe74b0ec586b2c7fae983cfe0f5bf
Author:        David Teigland <teigland@redhat.com>
AuthorDate:    Thu May 7 13:20:52 2009 -0500
Committer:     David Teigland <teigland@redhat.com>
CommitterDate: Mon May 11 10:05:07 2009 -0500

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 c4d55c4..adb136e 100644
--- a/dlm/tool/main.c
+++ b/dlm/tool/main.c
@@ -1081,9 +1081,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++) {
@@ -1155,9 +1155,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++) {


                 reply	other threads:[~2009-05-11 15:44 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=20090511151332.097AB12022C@lists.fedorahosted.org \
    --to=teigland@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).