From: Jeff King Date: Fri, 4 Dec 2020 18:48:54 +0000 (-0500) Subject: oid-array.h: drop sha1 mention from header guard X-Git-Tag: v2.30.0-rc1~16^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fb3920fd003e14283fb480b1eb4e8495b95034c9;p=thirdparty%2Fgit.git 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 Signed-off-by: Junio C Hamano --- diff --git a/oid-array.h b/oid-array.h index f28d322c90..2c8b64c393 100644 --- a/oid-array.h +++ b/oid-array.h @@ -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 */