diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2021-02-04 10:18:28 +0100 |
---|---|---|
committer | Andrea Gelmini <andrea.gelmini@gelma.net> | 2021-02-04 22:56:54 +0100 |
commit | 3ed9bba283a6a67864c0928186e277240be0d9ba (patch) | |
tree | 47d2bb70e269839cce5aa6645e0ad596faa64529 /ucbhelper | |
parent | 955fd7d8dc9da29717371c8fcb25d9954ff975bd (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 'ucbhelper')
-rw-r--r-- | ucbhelper/source/provider/fd_inputstream.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ucbhelper/source/provider/fd_inputstream.cxx b/ucbhelper/source/provider/fd_inputstream.cxx index 795c2dcaea7c..9a2b256a1c7c 100644 --- a/ucbhelper/source/provider/fd_inputstream.cxx +++ b/ucbhelper/source/provider/fd_inputstream.cxx @@ -43,7 +43,7 @@ namespace ucbhelper sal_uInt64 nFileSize = 0; if ( osl_getFilePos( m_tmpfl, &nFileSize ) == osl_File_E_None ) m_nLength = nFileSize; - oslFileError rc = osl_setFilePos( m_tmpfl, osl_Pos_Absolut, 0 ); + oslFileError rc = osl_setFilePos( m_tmpfl, osl_Pos_Absolute, 0 ); SAL_WARN_IF(rc != osl_File_E_None, "ucbhelper", "osl_setFilePos failed"); } } @@ -119,7 +119,7 @@ namespace ucbhelper if(!m_tmpfl) throw IOException(); - oslFileError rc = osl_setFilePos( m_tmpfl, osl_Pos_Absolut, location ); + oslFileError rc = osl_setFilePos( m_tmpfl, osl_Pos_Absolute, location ); SAL_WARN_IF(rc != osl_File_E_None, "ucbhelper", "osl_setFilePos failed"); } |