Changeset 21717 for branches/gcc-kmk/src/kernel32/exceptions.cpp
- Timestamp:
- Oct 18, 2011, 9:16:41 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/src/kernel32/exceptions.cpp
r21662 r21717 756 756 } 757 757 758 P SZpszExceptionName = "<unknown>"; /* points to name/type excpt */758 PCSZ pszExceptionName = "<unknown>"; /* points to name/type excpt */ 759 759 APIRET rc = XCPT_CONTINUE_SEARCH; /* excpt-dep. code */ 760 760 BOOL fExcptSoftware = FALSE; /* software/hardware gen. exceptn */ … … 1181 1181 1182 1182 if(lpszExeName) { 1183 DosWrite(hFile, "\n", 2, &ulBytesWritten);1183 DosWrite(hFile, (PVOID)"\n", 2, &ulBytesWritten); 1184 1184 DosWrite(hFile, lpszExeName, strlen(lpszExeName), &ulBytesWritten); 1185 DosWrite(hFile, "\n", 2, &ulBytesWritten);1185 DosWrite(hFile, (PVOID)"\n", 2, &ulBytesWritten); 1186 1186 } 1187 1187 }
Note:
See TracChangeset
for help on using the changeset viewer.