diff options
author | brian m. carlson <sandals@crustytoothpaste.net> | 2017-05-01 02:28:55 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-05-02 10:46:41 +0900 |
commit | fb4e352b4082a447c089151b1f2662844bda0354 (patch) | |
tree | 7912b32ed2900bb792d7f0173324f983189bfd7c /reflog-walk.c | |
parent | 1b283377b18bc1e363005729b025a88b36084c4e (diff) | |
download | git-fb4e352b4082a447c089151b1f2662844bda0354.tar.gz |
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>
Diffstat (limited to 'reflog-walk.c')
-rw-r--r-- | reflog-walk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reflog-walk.c b/reflog-walk.c index 99679f5825..c8fdf051d2 100644 --- a/reflog-walk.c +++ b/reflog-walk.c @@ -241,7 +241,7 @@ void fake_reflog_parent(struct reflog_walk_info *info, struct commit *commit) logobj = parse_object(reflog->ooid.hash); } while (commit_reflog->recno && (logobj && logobj->type != OBJ_COMMIT)); - if (!logobj && commit_reflog->recno >= 0 && is_null_sha1(reflog->ooid.hash)) { + if (!logobj && commit_reflog->recno >= 0 && is_null_oid(&reflog->ooid)) { /* a root commit, but there are still more entries to show */ reflog = &commit_reflog->reflogs->items[commit_reflog->recno]; logobj = parse_object(reflog->noid.hash); |