diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-08-25 10:27:05 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-08-25 10:27:05 +0300 |
commit | 5a684a041f10fe20512dd5aef6552531165dfa44 (patch) | |
tree | 589197edae21f5f6a7a6b020288e620a07dad02f /sal/osl/unx/file.cxx | |
parent | 955ff844401bc3577cb484ac40cce6688d96e5e6 (diff) |
Typo
Change-Id: Icfb6c58d8a73e45d7d9c5629ac0d808f7afcf9ff
Diffstat (limited to 'sal/osl/unx/file.cxx')
-rw-r--r-- | sal/osl/unx/file.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/osl/unx/file.cxx b/sal/osl/unx/file.cxx index a0ef50eae0e7..4ae6ef641ba0 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; } |