From 3ed9bba283a6a67864c0928186e277240be0d9ba Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Thu, 4 Feb 2021 10:18:28 +0100 Subject: Fix typo in code Change-Id: Ib8b306a27d25a34e784aeeb72708b0d5d1511f3c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110394 Tested-by: Jenkins Reviewed-by: Andrea Gelmini --- ucbhelper/source/provider/fd_inputstream.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ucbhelper/source') 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"); } -- cgit