[Libreoffice-commits] core.git: sal/osl

Tor Lillqvist tml at iki.fi
Sun Aug 25 00:28:09 PDT 2013


 sal/osl/unx/file.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 5a684a041f10fe20512dd5aef6552531165dfa44
Author: Tor Lillqvist <tml at iki.fi>
Date:   Sun Aug 25 10:27:05 2013 +0300

    Typo
    
    Change-Id: Icfb6c58d8a73e45d7d9c5629ac0d808f7afcf9ff

diff --git a/sal/osl/unx/file.cxx b/sal/osl/unx/file.cxx
index a0ef50e..4ae6ef6 100644
--- a/sal/osl/unx/file.cxx
+++ b/sal/osl/unx/file.cxx
@@ -293,7 +293,7 @@ sal_uInt64 FileHandle_Impl::getPos() const
 
 oslFileError FileHandle_Impl::setPos (sal_uInt64 uPos)
 {
-    SAL_INFO("osl.file", "FileHandle_Impl::setPos(" << m_fd << ", " << getPos() << ") => " << uPos);
+    SAL_INFO("sal.file", "FileHandle_Impl::setPos(" << m_fd << ", " << getPos() << ") => " << uPos);
     m_fileptr = sal::static_int_cast< off_t >(uPos);
     return osl_File_E_None;
 }
@@ -340,7 +340,7 @@ oslFileError FileHandle_Impl::setSize (sal_uInt64 uSize)
             return (result);
     }
 
-    SAL_INFO("osl.file", "osl_setFileSize(" << m_fd << ", " << getSize() << ") => " << nSize);
+    SAL_INFO("sal.file", "osl_setFileSize(" << m_fd << ", " << getSize() << ") => " << nSize);
     m_size = sal::static_int_cast< sal_uInt64 >(nSize);
     return osl_File_E_None;
 }


More information about the Libreoffice-commits mailing list