* [PATCH] dir: remove unused variable sb
@ 2015-05-19 22:13 René Scharfe
0 siblings, 0 replies; only message in thread
From: René Scharfe @ 2015-05-19 22:13 UTC (permalink / raw)
To: Git Mailing List; +Cc: Junio C Hamano
It had never been used.
Signed-off-by: Rene Scharfe <l.s.r@web.de>
---
The parameter prefix of report_path_error() is not (yet?) used either.
dir.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/dir.c b/dir.c
index 0c38d86..bc6c682 100644
--- a/dir.c
+++ b/dir.c
@@ -385,7 +385,6 @@ int report_path_error(const char *ps_matched,
/*
* Make sure all pathspec matched; otherwise it is an error.
*/
- struct strbuf sb = STRBUF_INIT;
int num, errors = 0;
for (num = 0; num < pathspec->nr; num++) {
int other, found_dup;
@@ -417,7 +416,6 @@ int report_path_error(const char *ps_matched,
pathspec->items[num].original);
errors++;
}
- strbuf_release(&sb);
return errors;
}
--
2.4.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2015-05-19 22:14 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-19 22:13 [PATCH] dir: remove unused variable sb René Scharfe
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.