summaryrefslogtreecommitdiff
path: root/ucbhelper/source/provider/fd_inputstream.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucbhelper/source/provider/fd_inputstream.cxx')
-rw-r--r--ucbhelper/source/provider/fd_inputstream.cxx4
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");
}