Fix metadata path on Windows

This commit is contained in:
Asher Baker
2016-01-14 14:18:01 +00:00
parent 43c3005312
commit 3a9ba1bbeb
+1 -1
View File
@@ -236,7 +236,7 @@ static bool dumpCallback(const wchar_t* dump_path,
printf("Wrote minidump to: %ls\\%ls.dmp\n", dump_path, minidump_id); printf("Wrote minidump to: %ls\\%ls.dmp\n", dump_path, minidump_id);
sprintf(dumpStoragePath, "%ls\\%ls.txt", dump_path, minidump_id); sprintf(dumpStoragePath, "%ls\\%ls.dmp.txt", dump_path, minidump_id);
FILE *extra = fopen(dumpStoragePath, "wb"); FILE *extra = fopen(dumpStoragePath, "wb");
if (!extra) { if (!extra) {