summaryrefslogtreecommitdiffstats
path: root/io/source/stm/streamhelper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'io/source/stm/streamhelper.cxx')
-rw-r--r--io/source/stm/streamhelper.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/io/source/stm/streamhelper.cxx b/io/source/stm/streamhelper.cxx
index c382cae96390..00ef1b50ec9f 100644
--- a/io/source/stm/streamhelper.cxx
+++ b/io/source/stm/streamhelper.cxx
@@ -75,7 +75,7 @@ void MemRingBuffer::resizeBuffer( sal_Int32 nMinSize )
}
if( nNewLen != m_nBufferLen ) {
- if (auto p = static_cast<sal_Int8*>(std::realloc(m_p, nNewLen)))
+ if (auto p = static_cast<sal_Int8*>(std::realloc(m_p, nNewLen)))
m_p = p;
else
{