diff options
| author | Edward Thomson <ethomson@edwardthomson.com> | 2020-07-12 18:18:12 +0100 |
|---|---|---|
| committer | Edward Thomson <ethomson@edwardthomson.com> | 2020-11-21 21:53:30 +0000 |
| commit | 51825c4f39af069d413fdb6cc661e53c4b63ad47 (patch) | |
| tree | 1a37cc03c75b3c8ba98ba2838c8677c77de2a2ff /src/alloc.c | |
| parent | 31654a34c9e6a457ef581892ba8775e3f5235f62 (diff) | |
| download | libgit2-51825c4f39af069d413fdb6cc661e53c4b63ad47.tar.gz | |
alloc: rename the win32 leakcheck allocator
The win32 leakchecking system is now named win32_leakcheck. Update the
allocator to match.
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c index a5674c9b4..291511d62 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -9,14 +9,14 @@ #include "runtime.h" #include "allocators/stdalloc.h" -#include "allocators/win32_crtdbg.h" +#include "allocators/win32_leakcheck.h" git_allocator git__allocator; static int setup_default_allocator(void) { #if defined(GIT_MSVC_CRTDBG) - return git_win32_crtdbg_init_allocator(&git__allocator); + return git_win32_leakcheck_init_allocator(&git__allocator); #else return git_stdalloc_init_allocator(&git__allocator); #endif |
