summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2021-02-04 10:18:28 +0100
committerAndrea Gelmini <andrea.gelmini@gelma.net>2021-02-04 22:56:54 +0100
commit3ed9bba283a6a67864c0928186e277240be0d9ba (patch)
tree47d2bb70e269839cce5aa6645e0ad596faa64529 /tools
parent955fd7d8dc9da29717371c8fcb25d9954ff975bd (diff)
Fix typo in code
Change-Id: Ib8b306a27d25a34e784aeeb72708b0d5d1511f3c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110394 Tested-by: Jenkins Reviewed-by: Andrea Gelmini <andrea.gelmini@gelma.net>
Diffstat (limited to 'tools')
-rw-r--r--tools/source/stream/strmunx.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/stream/strmunx.cxx b/tools/source/stream/strmunx.cxx
index 40cbe382213a..c6d20210e641 100644
--- a/tools/source/stream/strmunx.cxx
+++ b/tools/source/stream/strmunx.cxx
@@ -268,7 +268,7 @@ sal_uInt64 SvFileStream::SeekPos(sal_uInt64 const nPos)
oslFileError rc;
sal_uInt64 nNewPos;
if ( nPos != STREAM_SEEK_TO_END )
- rc = osl_setFilePos( pInstanceData->rHandle, osl_Pos_Absolut, nPos );
+ rc = osl_setFilePos( pInstanceData->rHandle, osl_Pos_Absolute, nPos );
else
rc = osl_setFilePos( pInstanceData->rHandle, osl_Pos_End, 0 );