summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoss Delinger <rossdylan@csh.rit.edu>2016-02-26 12:51:13 -0500
committerRoss Delinger <rossdylan@csh.rit.edu>2016-02-26 12:51:13 -0500
commit93e16642280ab637f8688b8c2146b11f95f98325 (patch)
tree71562c7f6b672beaab04a0af4d8e5b1bc910d8d9
parentf1260e03d976d6597cc0d6e37abe82eb9f093365 (diff)
downloadlibgit2-93e16642280ab637f8688b8c2146b11f95f98325.tar.gz
Fixed typo in one of the ifndef's in pool.h used to enable/disable debug mode
-rw-r--r--src/pool.h2
1 files changed, 1 insertions, 1 deletions
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);