summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
Diffstat (limited to 'sal')
-rw-r--r--sal/cppunittester/cppunittester.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sal/cppunittester/cppunittester.cxx b/sal/cppunittester/cppunittester.cxx
index c899f320ad0c..d2727f1cd98e 100644
--- a/sal/cppunittester/cppunittester.cxx
+++ b/sal/cppunittester/cppunittester.cxx
@@ -570,8 +570,8 @@ void printStack( CONTEXT* ctx )
// The exception filter function:
LONG WINAPI ExpFilter(EXCEPTION_POINTERS* ex)
{
- // we only want this active on the Jenkins tinderboxen
- printf("*** Exception 0x%x occured ***\n\n",ex->ExceptionRecord->ExceptionCode);
+ // we only want this active on the Jenkins tinderboxes
+ printf("*** Exception 0x%x occurred ***\n\n",ex->ExceptionRecord->ExceptionCode);
printStack(ex->ContextRecord);
return EXCEPTION_EXECUTE_HANDLER;
}
@@ -579,7 +579,7 @@ LONG WINAPI ExpFilter(EXCEPTION_POINTERS* ex)
SAL_IMPLEMENT_MAIN()
{
bool ok = false;
- // This magic kind of Windows-specific exception handling has to be in it's own function
+ // This magic kind of Windows-specific exception handling has to be in its own function
// because it cannot be in a function that has objects with destructors.
__try
{