diff options
author | Johan Herland <johan@herland.net> | 2007-05-29 01:21:25 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-05-28 16:51:55 -0700 |
commit | eb09626b94fb21c67f47f71f8bada0d4aed306f5 (patch) | |
tree | 77b6313284627ba55b33b880c3ad2d157cab8314 | |
parent | Fix git-svn to handle svn not reporting the md5sum of a file, and test. (diff) | |
download | tgif-eb09626b94fb21c67f47f71f8bada0d4aed306f5.tar.xz |
Fix stupid typo in lookup_tag()
Signed-off-by: Johan Herland <johan@herland.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r-- | tag.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,7 +30,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; } |