Re: [PATCH 10/20] notes-merge: convert struct notes_merge_pair to struct object_id

2016-08-31 Thread Johannes Schindelin
Hi Brian, On Sun, 28 Aug 2016, brian m. carlson wrote: > assert(!"Invalid existing change recorded"); > } else { > - hashcpy(mp->obj, obj); > - hashcpy(mp->base, p->one->oid.hash); > - hashcpy(

[PATCH 10/20] notes-merge: convert struct notes_merge_pair to struct object_id

2016-08-28 Thread brian m. carlson
Convert each of this structure's members from an unsigned char array to a struct object_id. Signed-off-by: brian m. carlson --- notes-merge.c | 122 +- 1 file changed, 62 insertions(+), 60 deletions(-) diff --git a/notes-merge.c b/notes-me