From 93e16642280ab637f8688b8c2146b11f95f98325 Mon Sep 17 00:00:00 2001 From: Ross Delinger Date: Fri, 26 Feb 2016 12:51:13 -0500 Subject: [PATCH] Fixed typo in one of the ifndef's in pool.h used to enable/disable debug mode --- src/pool.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pool.h b/src/pool.h index 1cae48fd3..e0fafa997 100644 --- a/src/pool.h +++ b/src/pool.h @@ -124,7 +124,7 @@ extern char *git_pool_strcat(git_pool *pool, const char *a, const char *b); /* * Misc utilities */ -#ifndef _DEBUG_POOL +#ifndef GIT_DEBUG_POOL extern uint32_t git_pool__open_pages(git_pool *pool); #endif extern bool git_pool__ptr_in_pool(git_pool *pool, void *ptr);