summaryrefslogtreecommitdiff
path: root/tag.c
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <junkio@cox.net>2007-05-28 23:54:26 -0700
committerLibravatar Junio C Hamano <junkio@cox.net>2007-05-28 23:54:26 -0700
commitcdd5b82ee8e6941eee9c7b09df63c44789fd5c4b (patch)
treecded11d5f1df83bad67218e61cfb71596567b214 /tag.c
parentMerge branch 'maint' of git://repo.or.cz/git-gui into maint (diff)
parentgit-svn: avoid md5 calculation entirely if SVN doesn't provide one (diff)
downloadtgif-cdd5b82ee8e6941eee9c7b09df63c44789fd5c4b.tar.xz
Merge branch 'maint-1.5.1' into maint
* maint-1.5.1: git-svn: avoid md5 calculation entirely if SVN doesn't provide one Fix stupid typo in lookup_tag()
Diffstat (limited to 'tag.c')
-rw-r--r--tag.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tag.c b/tag.c
index 330d287924..bbacd59a23 100644
--- a/tag.c
+++ b/tag.c
@@ -26,7 +26,7 @@ struct tag *lookup_tag(const unsigned char *sha1)
if (!obj->type)
obj->type = OBJ_TAG;
if (obj->type != OBJ_TAG) {
- error("Object %s is a %s, not a tree",
+ error("Object %s is a %s, not a tag",
sha1_to_hex(sha1), typename(obj->type));
return NULL;
}