sal/osl/unx/pipe.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit e85d48c90ec647665be7eb8e76a98ec3feadd5ce
Author:     Andrea Gelmini <andrea.gelm...@gelma.net>
AuthorDate: Fri Nov 22 13:37:01 2024 +0100
Commit:     Julien Nabet <serval2...@yahoo.fr>
CommitDate: Fri Nov 22 14:28:50 2024 +0100

    Fix typos
    
    Change-Id: I49cf90c401243c9606372735ad160f5f2b63b603
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/177026
    Reviewed-by: Julien Nabet <serval2...@yahoo.fr>
    Tested-by: Julien Nabet <serval2...@yahoo.fr>

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] != '
@@ -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;
     }
  • core.git: sal/osl Andrea Gelmini (via logerrit)

Reply via email to