[Libreoffice-commits] core.git: sal/osl

Chris Sherlock chris.sherlock79 at gmail.com
Sun Jul 9 21:02:53 UTC 2017


 sal/osl/w32/pipe.cxx |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 06c7ff43ce85be3fbba092c6ae87f1459770817d
Author: Chris Sherlock <chris.sherlock79 at gmail.com>
Date:   Mon Jul 10 07:01:59 2017 +1000

    osl: w32/pipe.cxx fPipeAvailable -> bPipeAvailable
    
    Change-Id: I2e57e9413f98de9a6d240c3c61c85fd7bd435498

diff --git a/sal/osl/w32/pipe.cxx b/sal/osl/w32/pipe.cxx
index c18e4435bf1e..f0ecf53f4b59 100644
--- a/sal/osl/w32/pipe.cxx
+++ b/sal/osl/w32/pipe.cxx
@@ -199,15 +199,15 @@ oslPipe SAL_CALL osl_createPipe(rtl_uString *strPipeName, oslPipeOptions Options
     }
     else
     {
-        BOOL fPipeAvailable;
+        BOOL bPipeAvailable;
 
         do
         {
             /* free instance should be available first */
-            fPipeAvailable = WaitNamedPipeW(SAL_W(path->buffer), NMPWAIT_WAIT_FOREVER);
+            bPipeAvailable = WaitNamedPipeW(SAL_W(path->buffer), NMPWAIT_WAIT_FOREVER);
 
             /* first try to open system pipe */
-            if (fPipeAvailable)
+            if (bPipeAvailable)
             {
                 pPipe->m_File = CreateFileW(
                     SAL_W(path->buffer),
@@ -231,7 +231,7 @@ oslPipe SAL_CALL osl_createPipe(rtl_uString *strPipeName, oslPipeOptions Options
                     // Pipe instance maybe caught by another client -> try again
                 }
             }
-        } while (fPipeAvailable);
+        } while (bPipeAvailable);
     }
 
     /* if we reach here something went wrong */


More information about the Libreoffice-commits mailing list