diff options
author | René Scharfe <l.s.r@web.de> | 2015-05-20 00:13:33 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-05-20 13:50:22 -0700 |
commit | 22570b68e3cb9380403d903680be3b3112a26490 (patch) | |
tree | aef560a79f50a9173004c207b814506ed8bbc854 /dir.c | |
parent | 5cd83e18851445cdc20d5842b53373fe15554ae9 (diff) | |
download | git-22570b68e3cb9380403d903680be3b3112a26490.tar.gz |
dir: remove unused variable sbrs/janitorial
It had never been used.
Signed-off-by: Rene Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'dir.c')
-rw-r--r-- | dir.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -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; } |