@@ -105,15 +105,15 @@ crashDumpHandler(struct _EXCEPTION_POINTERS * pExceptionInfo)
105105 hDll = LoadLibrary ("dbghelp.dll" );
106106 if (hDll == NULL )
107107 {
108- write_stderr ("could not load dbghelp.dll, cannot write crashdump \n" );
108+ write_stderr ("could not load dbghelp.dll, cannot write crash dump \n" );
109109 return EXCEPTION_CONTINUE_SEARCH ;
110110 }
111111
112112 pDump = (MINIDUMPWRITEDUMP ) GetProcAddress (hDll , "MiniDumpWriteDump" );
113113
114114 if (pDump == NULL )
115115 {
116- write_stderr ("could not load required functions in dbghelp.dll, cannot write crashdump \n" );
116+ write_stderr ("could not load required functions in dbghelp.dll, cannot write crash dump \n" );
117117 return EXCEPTION_CONTINUE_SEARCH ;
118118 }
119119
@@ -144,16 +144,16 @@ crashDumpHandler(struct _EXCEPTION_POINTERS * pExceptionInfo)
144144 NULL );
145145 if (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" ,
148148 dumpPath , (unsigned int ) GetLastError ());
149149 return EXCEPTION_CONTINUE_SEARCH ;
150150 }
151151
152152 if ((* pDump ) (selfProcHandle , selfPid , dumpFile , dumpType , & ExInfo ,
153153 NULL , NULL ))
154- write_stderr ("wrote crash dump to %s \n" , dumpPath );
154+ write_stderr ("wrote crash dump to file \"%s\" \n" , dumpPath );
155155 else
156- write_stderr ("could not write crash dump to %s : error code %08x\n" ,
156+ write_stderr ("could not write crash dump to file \"%s\" : error code %08x\n" ,
157157 dumpPath , (unsigned int ) GetLastError ());
158158
159159 CloseHandle (dumpFile );
0 commit comments