Convert read_mmblob to take struct object_id.
Since all of its callers have been updated, convert read_mmblob to take a pointer to struct object_id. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
e910bb1e79
commit
d449347d08
@ -195,9 +195,9 @@ static int checkout_merged(int pos, struct checkout *state)
|
||||
if (is_null_oid(&threeway[1]) || is_null_oid(&threeway[2]))
|
||||
return error(_("path '%s' does not have necessary versions"), path);
|
||||
|
||||
read_mmblob(&ancestor, threeway[0].hash);
|
||||
read_mmblob(&ours, threeway[1].hash);
|
||||
read_mmblob(&theirs, threeway[2].hash);
|
||||
read_mmblob(&ancestor, &threeway[0]);
|
||||
read_mmblob(&ours, &threeway[1]);
|
||||
read_mmblob(&theirs, &threeway[2]);
|
||||
|
||||
/*
|
||||
* NEEDSWORK: re-create conflicts from merges with
|
||||
|
Reference in New Issue
Block a user