Git development
 help / color / mirror / Atom feed
* [PATCH] submodule.c: Squelch a "use before assignment" warning
@ 2009-11-20  1:33 David Aguilar
  2009-11-20  8:05 ` Junio C Hamano
  0 siblings, 1 reply; 6+ messages in thread
From: David Aguilar @ 2009-11-20  1:33 UTC (permalink / raw)
  To: gitster; +Cc: git, David Aguilar

i686-apple-darwin9-gcc-4.0.1 (GCC) 4.0.1 (Apple Inc. build 5493) compiler
(and probably others) mistakenly thinks variable 'right' is used
before assigned.  Work it around by giving it a fake initialization.

Signed-off-by: David Aguilar <davvid@gmail.com>
---
 submodule.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/submodule.c b/submodule.c
index 461faf0..0145a62 100644
--- a/submodule.c
+++ b/submodule.c
@@ -38,7 +38,7 @@ void show_submodule_summary(FILE *f, const char *path,
 		const char *del, const char *add, const char *reset)
 {
 	struct rev_info rev;
-	struct commit *commit, *left = left, *right;
+	struct commit *commit, *left = left, *right = NULL;
 	struct commit_list *merge_bases, *list;
 	const char *message = NULL;
 	struct strbuf sb = STRBUF_INIT;
-- 
1.6.5.3.171.ge36e

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2009-11-22  3:33 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-20  1:33 [PATCH] submodule.c: Squelch a "use before assignment" warning David Aguilar
2009-11-20  8:05 ` Junio C Hamano
2009-11-20 11:33   ` David Aguilar
2009-11-21 18:46   ` Christoph Bartoschek
2009-11-22  2:59     ` Junio C Hamano
2009-11-22  3:32       ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox