summaryrefslogtreecommitdiff
path: root/src/hashtab.c
diff options
context:
space:
mode:
authorK.Takata <kentkt@csc.jp>2022-02-03 13:05:32 +0000
committerBram Moolenaar <Bram@vim.org>2022-02-03 13:05:32 +0000
commit6e1d31e9e3ca42cb883abca198f011dc6f4ceb14 (patch)
tree85e836c29901bb4997d3f839303959f12a8f1b75 /src/hashtab.c
parent2d3ac2e03093c4b0ae5d18c5f2f51ae0c2a9ec72 (diff)
downloadvim-git-6e1d31e9e3ca42cb883abca198f011dc6f4ceb14.tar.gz
patch 8.2.4288: preprocessor indents are inconsistentv8.2.4288
Problem: Preprocessor indents are inconsistent. Solution: Fix preprocessor indents. (Ken Takata, closes #9691)
Diffstat (limited to 'src/hashtab.c')
-rw-r--r--src/hashtab.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hashtab.c b/src/hashtab.c
index 482d83005..a7470ecdc 100644
--- a/src/hashtab.c
+++ b/src/hashtab.c
@@ -189,13 +189,13 @@ hash_lookup(hashtab_T *ht, char_u *key, hash_T hash)
void
hash_debug_results(void)
{
-#ifdef HT_DEBUG
+# ifdef HT_DEBUG
fprintf(stderr, "\r\n\r\n\r\n\r\n");
fprintf(stderr, "Number of hashtable lookups: %ld\r\n", hash_count_lookup);
fprintf(stderr, "Number of perturb loops: %ld\r\n", hash_count_perturb);
fprintf(stderr, "Percentage of perturb loops: %ld%%\r\n",
hash_count_perturb * 100 / hash_count_lookup);
-#endif
+# endif
}
#endif