[Libreoffice-commits] core.git: sal/cppunittester
Andrea Gelmini (via logerrit)
logerrit at kemper.freedesktop.org
Thu Jul 29 07:52:53 UTC 2021
sal/cppunittester/cppunittester.cxx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 6f8f757c7338dd890273235bae6917b3175e2f86
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Wed Jul 28 21:13:15 2021 +0200
Commit: Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Thu Jul 29 09:52:20 2021 +0200
Fix typos
Change-Id: I0430fe4bc3107b321e7b7ab84cbc3e6afff97372
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119647
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
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
{
More information about the Libreoffice-commits
mailing list