oid-array.h: drop sha1 mention from header guard

When this file was moved from sha1-array.h, we forgot to update the
preprocessor header guard to match the new name.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Jeff King 2020-12-04 13:48:54 -05:00 коммит произвёл Junio C Hamano
Родитель 3a0b884cab
Коммит fb3920fd00
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -1,5 +1,5 @@
#ifndef SHA1_ARRAY_H
#define SHA1_ARRAY_H
#ifndef OID_ARRAY_H
#define OID_ARRAY_H
/**
* The API provides storage and manipulation of sets of object identifiers.
@ -106,4 +106,4 @@ void oid_array_filter(struct oid_array *array,
for_each_oid_fn want,
void *cbdata);
#endif /* SHA1_ARRAY_H */
#endif /* OID_ARRAY_H */