summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2024-11-22 13:37:01 +0100
committerJulien Nabet <serval2412@yahoo.fr>2024-11-22 14:28:50 +0100
commite85d48c90ec647665be7eb8e76a98ec3feadd5ce (patch)
treeec30d7aae41860227dac149c3fa640d58fca2860
parentb86368d712a67df4adb35011bf52286d9bd03724 (diff)
Fix typos
Change-Id: I49cf90c401243c9606372735ad160f5f2b63b603 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/177026 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--sal/osl/unx/pipe.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sal/osl/unx/pipe.cxx b/sal/osl/unx/pipe.cxx
index c4420731795d..c9c8cc31c705 100644
--- a/sal/osl/unx/pipe.cxx
+++ b/sal/osl/unx/pipe.cxx
@@ -373,7 +373,7 @@ oslPipe SAL_CALL osl_acceptPipe(oslPipe pPipe)
int socket;
{
- // dont hold lock while accepting, so it is possible to close a socket blocked in accept
+ // don't hold lock while accepting, so it is possible to close a socket blocked in accept
std::unique_lock aGuard(pPipe->m_Mutex);
assert(pPipe->m_Name[0] != '\0'); // you cannot have an empty pipe name
@@ -445,7 +445,7 @@ sal_Int32 SAL_CALL osl_receivePipe(oslPipe pPipe,
int socket;
{
- // dont hold lock while receiving, so it is possible to close a socket blocked in recv
+ // don't hold lock while receiving, so it is possible to close a socket blocked in recv
std::unique_lock aGuard(pPipe->m_Mutex);
socket = pPipe->m_Socket;
}
@@ -473,7 +473,7 @@ sal_Int32 SAL_CALL osl_sendPipe(oslPipe pPipe,
int socket;
{
- // dont hold lock while sending, so it is possible to close a socket blocked in send
+ // don't hold lock while sending, so it is possible to close a socket blocked in send
std::unique_lock aGuard(pPipe->m_Mutex);
socket = pPipe->m_Socket;
}