mirror of
https://github.com/git/git.git
synced 2024-10-30 13:57:54 +01:00
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>
This commit is contained in:
parent
5cd83e1885
commit
22570b68e3
1 changed files with 0 additions and 2 deletions
2
dir.c
2
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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue