summaryrefslogtreecommitdiff
path: root/commit.h
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <junkio@cox.net>2006-06-17 18:56:08 -0700
committerLibravatar Junio C Hamano <junkio@cox.net>2006-06-17 18:56:08 -0700
commit8a02ad4f440da05097416e7ca719360b05d23dbf (patch)
treec57cbc108f4e6c5c1c3338545fb9eccf3a2aad52 /commit.h
parentMerge branch 'js/diff' (diff)
parentFix git-format-patch -s (diff)
downloadtgif-8a02ad4f440da05097416e7ca719360b05d23dbf.tar.xz
Merge branch 'eb/mail' into next
* eb/mail: Fix git-format-patch -s Some more memory leak avoidance Move "void *util" from "struct object" into "struct commit" Shrink "struct object" a bit
Diffstat (limited to 'commit.h')
-rw-r--r--commit.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/commit.h b/commit.h
index c9de1677e9..7c9ca3fbed 100644
--- a/commit.h
+++ b/commit.h
@@ -11,6 +11,7 @@ struct commit_list {
struct commit {
struct object object;
+ void *util;
unsigned long date;
struct commit_list *parents;
struct tree *tree;