On Fri, Mar 23, 2018 at 06:07:33PM -0400, Eric Sunshine wrote:
> On Fri, Mar 23, 2018 at 1:20 PM, Nguyễn Thái Ngọc Duy <[email protected]>
> wrote:
> > Interdiff is big due to the "objects." to "objects->" conversion
> > (blame Brandon for his suggestion, don't blame me :D)
> >
> > diff --git a/packfile.c b/packfile.c
> > @@ -1938,7 +1939,7 @@ static int add_promisor_object(const struct object_id
> > *oid,
> > /*
> > * If this is a tree, commit, or tag, the objects it refers
> > - * to are also promisor objects. (Blobs refer to no objects.)
> > + * to are also promisor objects-> (Blobs refer to no objects->)
> > */
>
> Meh.
I got too excited when searching and replacing. Here's the fixup
patch.
-- 8< --
Subject: [PATCH] fixup! object-store: move packed_git and packed_git_mru to
object store
---
packfile.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packfile.c b/packfile.c
index 63c89ee31a..0906b8f741 100644
--- a/packfile.c
+++ b/packfile.c
@@ -1937,7 +1937,7 @@ static int add_promisor_object(const struct object_id
*oid,
/*
* If this is a tree, commit, or tag, the objects it refers
- * to are also promisor objects-> (Blobs refer to no objects->)
+ * to are also promisor objects. (Blobs refer to no objects.)
*/
if (obj->type == OBJ_TREE) {
struct tree *tree = (struct tree *)obj;
--
2.17.0.rc0.348.gd5a49e0b6f
-- 8< --