summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2017-07-10 07:01:59 +1000
committerChris Sherlock <chris.sherlock79@gmail.com>2017-07-10 07:01:59 +1000
commit06c7ff43ce85be3fbba092c6ae87f1459770817d (patch)
treecf26866a3e3e9434a600e3c48cb792493cec68e9 /sal
parent48d354f2615e828d7acb62d5496e467d3ade1c9d (diff)
osl: w32/pipe.cxx fPipeAvailable -> bPipeAvailable
Change-Id: I2e57e9413f98de9a6d240c3c61c85fd7bd435498
Diffstat (limited to 'sal')
-rw-r--r--sal/osl/w32/pipe.cxx8
1 files changed, 4 insertions, 4 deletions
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 */