summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2021-07-28 21:13:15 +0200
committerJulien Nabet <serval2412@yahoo.fr>2021-07-29 09:52:20 +0200
commit6f8f757c7338dd890273235bae6917b3175e2f86 (patch)
treec6964b2004b3008e8368a395e158e2d606418f20 /sal
parent53840ffd9755bbf2965676136c9772089891bfe8 (diff)
Fix typos
Change-Id: I0430fe4bc3107b321e7b7ab84cbc3e6afff97372 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119647 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
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
{