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 /builtin/diff.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 'builtin/diff.c')
-rw-r--r-- | builtin/diff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/diff.c b/builtin/diff.c index d184aafab9..a25b4e4ae6 100644 --- a/builtin/diff.c +++ b/builtin/diff.c @@ -408,7 +408,7 @@ int cmd_diff(int argc, const char **argv, const char *prefix) } else if (obj->type == OBJ_BLOB) { if (2 <= blobs) die(_("more than two blobs given: '%s'"), name); - hashcpy(blob[blobs].oid.hash, obj->oid.hash); + oidcpy(&blob[blobs].oid, &obj->oid); blob[blobs].name = name; blob[blobs].mode = entry->mode; blobs++; |