@@ -105,15 +105,15 @@ crashDumpHandler(struct _EXCEPTION_POINTERS * pExceptionInfo)
105
105
hDll = LoadLibrary ("dbghelp.dll" );
106
106
if (hDll == NULL )
107
107
{
108
- write_stderr ("could not load dbghelp.dll, cannot writecrashdump \n" );
108
+ write_stderr ("could not load dbghelp.dll, cannot writecrash dump \n" );
109
109
return EXCEPTION_CONTINUE_SEARCH ;
110
110
}
111
111
112
112
pDump = (MINIDUMPWRITEDUMP )GetProcAddress (hDll ,"MiniDumpWriteDump" );
113
113
114
114
if (pDump == NULL )
115
115
{
116
- write_stderr ("could not load required functions in dbghelp.dll, cannot writecrashdump \n" );
116
+ write_stderr ("could not load required functions in dbghelp.dll, cannot writecrash dump \n" );
117
117
return EXCEPTION_CONTINUE_SEARCH ;
118
118
}
119
119
@@ -144,16 +144,16 @@ crashDumpHandler(struct _EXCEPTION_POINTERS * pExceptionInfo)
144
144
NULL );
145
145
if (dumpFile == INVALID_HANDLE_VALUE )
146
146
{
147
- write_stderr ("could not open crash dump file%s for writing: error code %u\n" ,
147
+ write_stderr ("could not open crash dump file\"%s\" for writing: error code %u\n" ,
148
148
dumpPath , (unsignedint )GetLastError ());
149
149
return EXCEPTION_CONTINUE_SEARCH ;
150
150
}
151
151
152
152
if ((* pDump ) (selfProcHandle ,selfPid ,dumpFile ,dumpType ,& ExInfo ,
153
153
NULL ,NULL ))
154
- write_stderr ("wrote crash dump to%s \n" ,dumpPath );
154
+ write_stderr ("wrote crash dump tofile \"%s\" \n" ,dumpPath );
155
155
else
156
- write_stderr ("could not write crash dump to%s : error code %08x\n" ,
156
+ write_stderr ("could not write crash dump tofile \"%s\" : error code %08x\n" ,
157
157
dumpPath , (unsignedint )GetLastError ());
158
158
159
159
CloseHandle (dumpFile );