Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2020-05-20 18:33:29 +0300
committerJunio C Hamano <gitster@pobox.com>2020-05-20 18:33:29 +0300
commit7c65901d6d7c2692854f88e56baabb1753e3f308 (patch)
treea173ff417a68d380cf55ec79d8b97ac9fd612960
parent972ce8561d6d332b5f794ead27cd0ae476d7fc88 (diff)
parent9892dc83f6f943d1ee5ba39038c4c3e9c5d0f239 (diff)
Merge branch 'ak/slab-decl-cleanup'
Code clean-up. * ak/slab-decl-cleanup: commit-slab-decl.h: update include guard
-rw-r--r--commit-slab-decl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/commit-slab-decl.h b/commit-slab-decl.h
index adc7b46c83..bfbed1516a 100644
--- a/commit-slab-decl.h
+++ b/commit-slab-decl.h
@@ -1,5 +1,5 @@
-#ifndef COMMIT_SLAB_HDR_H
-#define COMMIT_SLAB_HDR_H
+#ifndef COMMIT_SLAB_DECL_H
+#define COMMIT_SLAB_DECL_H
/* allocate ~512kB at once, allowing for malloc overhead */
#ifndef COMMIT_SLAB_SIZE
@@ -40,4 +40,4 @@ elemtype *slabname## _peek(struct slabname *s, const struct commit *c)
declare_commit_slab(slabname, elemtype); \
declare_commit_slab_prototypes(slabname, elemtype)
-#endif /* COMMIT_SLAB_HDR_H */
+#endif /* COMMIT_SLAB_DECL_H */