Skip to content

Commit fb4e352

Browse files
bk2204gitster
authored andcommitted
Clean up outstanding object_id transforms.
The semantic patch for standard object_id transforms found two outstanding places where we could make a transformation automatically. Apply these changes. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 1b28337 commit fb4e352

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

builtin/diff.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ int cmd_diff(int argc, const char **argv, const char *prefix)
408408
} else if (obj->type == OBJ_BLOB) {
409409
if (2 <= blobs)
410410
die(_("more than two blobs given: '%s'"), name);
411-
hashcpy(blob[blobs].oid.hash, obj->oid.hash);
411+
oidcpy(&blob[blobs].oid, &obj->oid);
412412
blob[blobs].name = name;
413413
blob[blobs].mode = entry->mode;
414414
blobs++;

reflog-walk.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ void fake_reflog_parent(struct reflog_walk_info *info, struct commit *commit)
241241
logobj = parse_object(reflog->ooid.hash);
242242
} while (commit_reflog->recno && (logobj && logobj->type != OBJ_COMMIT));
243243

244-
if (!logobj && commit_reflog->recno >= 0 && is_null_sha1(reflog->ooid.hash)) {
244+
if (!logobj && commit_reflog->recno >= 0 && is_null_oid(&reflog->ooid)) {
245245
/* a root commit, but there are still more entries to show */
246246
reflog = &commit_reflog->reflogs->items[commit_reflog->recno];
247247
logobj = parse_object(reflog->noid.hash);

0 commit comments

Comments
 (0)