diff options
author | Patryk Obara <patryk.obara@gmail.com> | 2018-01-28 01:13:22 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-01-30 10:42:36 -0800 |
commit | 1752cbbc447c08230c478239e185db9fa2d4a515 (patch) | |
tree | 79f31f34638863ebc55b11960e2b14b1cc9701cf /sha1_file.c | |
parent | 3fc7281ffa2533820d26809223c7181256b88fe2 (diff) | |
download | git-po/object-id.tar.gz |
sha1_file: rename hash_sha1_file_literallypo/object-id
This function was already converted to use struct object_id earlier.
Signed-off-by: Patryk Obara <patryk.obara@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sha1_file.c')
-rw-r--r-- | sha1_file.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sha1_file.c b/sha1_file.c index 59238f5bea..34c041e8cd 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -1652,8 +1652,9 @@ int write_object_file(const void *buf, unsigned long len, const char *type, return write_loose_object(oid, hdr, hdrlen, buf, len, 0); } -int hash_sha1_file_literally(const void *buf, unsigned long len, const char *type, - struct object_id *oid, unsigned flags) +int hash_object_file_literally(const void *buf, unsigned long len, + const char *type, struct object_id *oid, + unsigned flags) { char *header; int hdrlen, status = 0; |