oidcpy_with_padding: constify `src' arg

As with `oidcpy', the source struct will not be modified and
this will allow an upcoming const-correct caller to use it.

Signed-off-by: Eric Wong <e@80x24.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Eric Wong 2021-07-07 23:10:18 +00:00 коммит произвёл Junio C Hamano
Родитель 33f379eee6
Коммит 90e07f0a34
1 изменённых файлов: 1 добавлений и 1 удалений

2
hash.h
Просмотреть файл

@ -265,7 +265,7 @@ static inline void oidcpy(struct object_id *dst, const struct object_id *src)
/* Like oidcpy() but zero-pads the unused bytes in dst's hash array. */
static inline void oidcpy_with_padding(struct object_id *dst,
struct object_id *src)
const struct object_id *src)
{
size_t hashsz;