]> git.proxmox.com Git - libgit2.git/commitdiff
Fixed typo in one of the ifndef's in pool.h used to enable/disable debug mode
authorRoss Delinger <rossdylan@csh.rit.edu>
Fri, 26 Feb 2016 17:51:13 +0000 (12:51 -0500)
committerRoss Delinger <rossdylan@csh.rit.edu>
Fri, 26 Feb 2016 17:51:13 +0000 (12:51 -0500)
src/pool.h

index 1cae48fd3be92182b9b0e300f5253c07b7293523..e0fafa9976b75d6d9d9c09f305de32df8ec645c7 100644 (file)
@@ -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);