summaryrefslogtreecommitdiff
path: root/sequencer.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2012-03-22 18:53:24 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-03-23 20:52:05 (GMT)
commitcba595bd21fd0731e37898dbd6c5b55f65fd8aea (patch)
tree2bd67efd15c4aab92cd7abde661c500a663edeef /sequencer.c
parent498a04af143f55a7bbbba484d48a7f123d43be04 (diff)
downloadgit-cba595bd21fd0731e37898dbd6c5b55f65fd8aea.zip
git-cba595bd21fd0731e37898dbd6c5b55f65fd8aea.tar.gz
git-cba595bd21fd0731e37898dbd6c5b55f65fd8aea.tar.bz2
drop casts from users EMPTY_TREE_SHA1_BIN
This macro already evaluates to the correct type, as it casts the string literal to "unsigned char *" itself (and callers who want the literal can use the _LITERAL form). Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sequencer.c')
-rw-r--r--sequencer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sequencer.c b/sequencer.c
index a37846a..4307364 100644
--- a/sequencer.c
+++ b/sequencer.c
@@ -164,7 +164,7 @@ static void write_message(struct strbuf *msgbuf, const char *filename)
static struct tree *empty_tree(void)
{
- return lookup_tree((const unsigned char *)EMPTY_TREE_SHA1_BIN);
+ return lookup_tree(EMPTY_TREE_SHA1_BIN);
}
static int error_dirty_index(struct replay_opts *opts)