summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené Scharfe <l.s.r@web.de>2015-05-19 22:13:33 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-05-20 20:50:22 (GMT)
commit22570b68e3cb9380403d903680be3b3112a26490 (patch)
treeaef560a79f50a9173004c207b814506ed8bbc854
parent5cd83e18851445cdc20d5842b53373fe15554ae9 (diff)
downloadgit-22570b68e3cb9380403d903680be3b3112a26490.zip
git-22570b68e3cb9380403d903680be3b3112a26490.tar.gz
git-22570b68e3cb9380403d903680be3b3112a26490.tar.bz2
dir: remove unused variable sb
It had never been used. Signed-off-by: Rene Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--dir.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/dir.c b/dir.c
index a3e7073..480ad05 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;
}