diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2021-02-05 11:10:34 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2021-02-05 15:01:48 +0100 |
commit | 0ce7c84cc7b3f53a56a70586f73d7615f68ec1dc (patch) | |
tree | 410bb933b09711440bed16f006f2556140d5ce7f /basic | |
parent | cb4ba42fbf421a17a8ba0e32ef09add928f2b694 (diff) |
Revert "Fix typo in code"
This reverts commit 3ed9bba283a6a67864c0928186e277240be0d9ba. osl_Pos_Absolut
(include/osl/file.h) is part of the stable URE interface; it must not be changed.
Change-Id: I1f49923a9351e4be5aee39b10720d38b424feb9b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110435
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/runtime/iosys.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/runtime/iosys.cxx b/basic/source/runtime/iosys.cxx index 24407c670698..4c991c6676c7 100644 --- a/basic/source/runtime/iosys.cxx +++ b/basic/source/runtime/iosys.cxx @@ -239,7 +239,7 @@ sal_uInt64 OslStream::SeekPos( sal_uInt64 nPos ) } else { - rc = maFile.setPos( osl_Pos_Absolute, nPos ); + rc = maFile.setPos( osl_Pos_Absolut, nPos ); } OSL_VERIFY(rc == ::osl::FileBase::E_None); sal_uInt64 nRealPos(0); |