diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2015-09-26 23:19:29 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2015-09-26 23:19:29 +0200 |
commit | 803c0c69656188264bd01e71af036452286a8752 (patch) | |
tree | ece266b60ab60178f98d5102209aeb50d7b2e685 /src/LeakFinder.cpp | |
parent | Merge pull request #2495 from Seadragon91/clang-3.7 (diff) | |
download | cuberite-803c0c69656188264bd01e71af036452286a8752.tar cuberite-803c0c69656188264bd01e71af036452286a8752.tar.gz cuberite-803c0c69656188264bd01e71af036452286a8752.tar.bz2 cuberite-803c0c69656188264bd01e71af036452286a8752.tar.lz cuberite-803c0c69656188264bd01e71af036452286a8752.tar.xz cuberite-803c0c69656188264bd01e71af036452286a8752.tar.zst cuberite-803c0c69656188264bd01e71af036452286a8752.zip |
Diffstat (limited to '')
-rw-r--r-- | src/LeakFinder.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/LeakFinder.cpp b/src/LeakFinder.cpp index 2e352af2d..dba8275c8 100644 --- a/src/LeakFinder.cpp +++ b/src/LeakFinder.cpp @@ -875,7 +875,7 @@ static int MyAllocHook(int nAllocType, void *pvData, printf("********************************************\n"); printf("Please wait\n"); - LeakFinderXmlOutput Output("memdump.xml"); + LeakFinderXmlOutput Output(L"memdump.xml"); DumpUsedMemory(&Output); printf("\nMemory dump complete. Server will now abort.\n"); @@ -912,7 +912,7 @@ static int MyAllocHook(int nAllocType, void *pvData, printf("********************************************\n"); printf("Please wait\n"); - LeakFinderXmlOutput Output("memdump.xml"); + LeakFinderXmlOutput Output(L"memdump.xml"); DumpUsedMemory(&Output); printf("\nMemory dump complete. Server will now abort.\n"); @@ -955,7 +955,7 @@ static int MyAllocHook(int nAllocType, void *pvData, printf("******************************************\n"); printf("Please wait\n"); - LeakFinderXmlOutput Output("memdump.xml"); + LeakFinderXmlOutput Output(L"memdump.xml"); DumpUsedMemory(&Output); printf("\nMemory dump complete. Server will now abort.\n"); |