public inbox for git@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH GSoC] repo: Remove unnecessary variable shadow
@ 2026-02-23 13:52 K Jayatheerth
  2026-02-23 15:32 ` Justin Tobler
  2026-02-27 17:07 ` JAYATHEERTH K
  0 siblings, 2 replies; 4+ messages in thread
From: K Jayatheerth @ 2026-02-23 13:52 UTC (permalink / raw)
  To: git
  Cc: Karthik Nayak, Justin Tobler, Ayush Chandekar, Siddharth Asthana,
	lucasseikioshiro, K Jayatheerth

Avoid redeclaring `entry` inside the conditional block, removing
unnecessary variable shadowing and improving code clarity without
changing behavior.

Signed-off-by: K Jayatheerth <jayatheerthkulkarni2005@gmail.com>
---
 builtin/repo.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/builtin/repo.c b/builtin/repo.c
index 0ea045abc1..5540bd25d2 100644
--- a/builtin/repo.c
+++ b/builtin/repo.c
@@ -412,7 +412,6 @@ static void stats_table_print_structure(const struct stats_table *table)
 		const char *unit = "";
 
 		if (entry) {
-			struct stats_table_entry *entry = item->util;
 			value = entry->value;
 			if (entry->unit)
 				unit = entry->unit;
-- 
2.53.0


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

end of thread, other threads:[~2026-02-27 19:11 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-23 13:52 [PATCH GSoC] repo: Remove unnecessary variable shadow K Jayatheerth
2026-02-23 15:32 ` Justin Tobler
2026-02-27 17:07 ` JAYATHEERTH K
2026-02-27 19:11   ` 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