@@ -105,15 +105,15 @@ crashDumpHandler(struct _EXCEPTION_POINTERS * pExceptionInfo)
105105hDll = LoadLibrary ("dbghelp.dll" );
106106if (hDll == NULL )
107107{
108- write_stderr ("could not load dbghelp.dll, cannot writecrashdump \n" );
108+ write_stderr ("could not load dbghelp.dll, cannot writecrash dump \n" );
109109return EXCEPTION_CONTINUE_SEARCH ;
110110}
111111
112112pDump = (MINIDUMPWRITEDUMP )GetProcAddress (hDll ,"MiniDumpWriteDump" );
113113
114114if (pDump == NULL )
115115{
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" );
117117return EXCEPTION_CONTINUE_SEARCH ;
118118}
119119
@@ -144,16 +144,16 @@ crashDumpHandler(struct _EXCEPTION_POINTERS * pExceptionInfo)
144144NULL );
145145if (dumpFile == INVALID_HANDLE_VALUE )
146146{
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" ,
148148dumpPath , (unsignedint )GetLastError ());
149149return EXCEPTION_CONTINUE_SEARCH ;
150150}
151151
152152if ((* pDump ) (selfProcHandle ,selfPid ,dumpFile ,dumpType ,& ExInfo ,
153153NULL ,NULL ))
154- write_stderr ("wrote crash dump to%s \n" ,dumpPath );
154+ write_stderr ("wrote crash dump tofile \"%s\" \n" ,dumpPath );
155155else
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" ,
157157dumpPath , (unsignedint )GetLastError ());
158158
159159CloseHandle (dumpFile );