diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2009-03-13 13:51:33 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-03-14 13:36:34 -0700 |
commit | 8e76bf3fc915ff9c530842123263e7147df207bb (patch) | |
tree | f9af9c9e1243ba57b6f0985a8694b5e5f89fefba /builtin-for-each-ref.c | |
parent | 7f733de04e69c8ba40158d1da46c4aa121f714b6 (diff) | |
download | git-8e76bf3fc915ff9c530842123263e7147df207bb.tar.gz |
Remove unused assignments
These variables were always overwritten or the assigned
value was unused:
builtin-diff-tree.c::cmd_diff_tree(): nr_sha1
builtin-for-each-ref.c::opt_parse_sort(): sort_tail
builtin-mailinfo.c::decode_header_bq(): in
builtin-shortlog.c::insert_one_record(): len
connect.c::git_connect(): path
imap-send.c::v_issue_imap_cmd(): n
pretty.c::pp_user_info(): filler
remote::parse_refspec_internal(): llen
Signed-off-by: Benjamin Kramer <benny.kra@googlemail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-for-each-ref.c')
-rw-r--r-- | builtin-for-each-ref.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/builtin-for-each-ref.c b/builtin-for-each-ref.c index e46b7adc97..5cbb4b081d 100644 --- a/builtin-for-each-ref.c +++ b/builtin-for-each-ref.c @@ -943,7 +943,6 @@ static int opt_parse_sort(const struct option *opt, const char *arg, int unset) return -1; *sort_tail = s = xcalloc(1, sizeof(*s)); - sort_tail = &s->next; if (*arg == '-') { s->reverse = 1; |