From 16ef76f580a6b84e1acef142cca104837161548c Mon Sep 17 00:00:00 2001 From: Asher Baker Date: Thu, 14 Jan 2016 13:10:57 +0000 Subject: [PATCH] Wide strings are too wide. --- extension/extension.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extension/extension.cpp b/extension/extension.cpp index 9277ef1..1d85d40 100644 --- a/extension/extension.cpp +++ b/extension/extension.cpp @@ -238,7 +238,7 @@ static bool dumpCallback(const wchar_t* dump_path, sprintf(dumpStoragePath, "%ls\\%ls.txt", dump_path, minidump_id); - FILE *extra = fopen(dumpStoragePath, L"wb"); + FILE *extra = fopen(dumpStoragePath, "wb"); if (!extra) { printf("Failed to open metadata file!\n"); return succeeded;