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 /sal/osl/unx/file.cxx | |
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 'sal/osl/unx/file.cxx')
-rw-r--r-- | sal/osl/unx/file.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/osl/unx/file.cxx b/sal/osl/unx/file.cxx index d8396f6279b6..f4d6b229c3f7 100644 --- a/sal/osl/unx/file.cxx +++ b/sal/osl/unx/file.cxx @@ -1549,7 +1549,7 @@ oslFileError SAL_CALL osl_setFilePos(oslFileHandle Handle, sal_uInt32 uHow, sal_ FileHandle_Impl::Guard lock(&(pImpl->m_mutex)); switch (uHow) { - case osl_Pos_Absolut: + case osl_Pos_Absolute: if (nOffset < 0) return osl_File_E_INVAL; break; |