diff options
Diffstat (limited to 'src/LeakFinder.cpp')
-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"); |