summaryrefslogtreecommitdiff
path: root/include/osl
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2021-02-04 10:18:28 +0100
committerAndrea Gelmini <andrea.gelmini@gelma.net>2021-02-04 22:56:54 +0100
commit3ed9bba283a6a67864c0928186e277240be0d9ba (patch)
tree47d2bb70e269839cce5aa6645e0ad596faa64529 /include/osl
parent955fd7d8dc9da29717371c8fcb25d9954ff975bd (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 'include/osl')
-rw-r--r--include/osl/file.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/osl/file.h b/include/osl/file.h
index 07d2beb2ae1f..6fa9f937407a 100644
--- a/include/osl/file.h
+++ b/include/osl/file.h
@@ -693,7 +693,7 @@ typedef void *oslFileHandle;
SAL_DLLPUBLIC oslFileError SAL_CALL osl_openFile(
rtl_uString *pustrFileURL, oslFileHandle *pHandle, sal_uInt32 uFlags );
-#define osl_Pos_Absolut 1
+#define osl_Pos_Absolute 1
#define osl_Pos_Current 2
#define osl_Pos_End 3
@@ -703,7 +703,7 @@ SAL_DLLPUBLIC oslFileError SAL_CALL osl_openFile(
Handle to a file received by a previous call to osl_openFile().
@param[in] uHow
- How to calculate the offset - osl_Pos_Absolut means start at the
+ How to calculate the offset - osl_Pos_Absolute means start at the
beginning of the file, osl_Pos_Current means offset from the current
seek position and osl_Pos_End means the offset will be negative and
the position will be calculated backwards from the end of the file by