diff options
author | Junio C Hamano <junkio@cox.net> | 2006-02-24 07:27:03 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-02-24 07:27:03 +0100 |
commit | 816c02ce8ecddce065e83db9f4ecb78f6b0e23dc (patch) | |
tree | b85fa8225e982f67dd4e9d516b92c3f03a1f99bc /commit.c | |
parent | Merge branch 'ak/gitview' (diff) | |
parent | Merge branches 'jc/fix-co-candy', 'jc/fix-rename-leak' and 'ar/fix-win' into ... (diff) | |
download | git-816c02ce8ecddce065e83db9f4ecb78f6b0e23dc.tar.xz git-816c02ce8ecddce065e83db9f4ecb78f6b0e23dc.zip |
Merge fixes early for next maint series.
Diffstat (limited to 'commit.c')
-rw-r--r-- | commit.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -212,7 +212,8 @@ int parse_commit_buffer(struct commit *item, void *buffer, unsigned long size) if (memcmp(bufptr, "tree ", 5)) return error("bogus commit object %s", sha1_to_hex(item->object.sha1)); if (get_sha1_hex(bufptr + 5, parent) < 0) - return error("bad tree pointer in commit %s\n", sha1_to_hex(item->object.sha1)); + return error("bad tree pointer in commit %s", + sha1_to_hex(item->object.sha1)); item->tree = lookup_tree(parent); if (item->tree) n_refs++; |