summaryrefslogtreecommitdiff
path: root/include/osl
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2015-09-29 17:54:55 +0200
committerOliver Specht <oliver.specht@cib.de>2015-09-30 12:38:23 +0000
commitae13a6819e1dea6646aa0eba435ca9c81101f52c (patch)
treec2543f2e8b16410151dfb54603e39225a9a7ed57 /include/osl
parentd344d2b1f5e528c5f2a2d6b892a23e402aa4bd46 (diff)
Fix typos
Change-Id: Id66432ef80fc2963fd2cbc6fad5d8e135e8975b0 Reviewed-on: https://gerrit.libreoffice.org/18956 Reviewed-by: Oliver Specht <oliver.specht@cib.de> Tested-by: Oliver Specht <oliver.specht@cib.de>
Diffstat (limited to 'include/osl')
-rw-r--r--include/osl/conditn.h2
-rw-r--r--include/osl/pipe.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/osl/conditn.h b/include/osl/conditn.h
index 953ac5de8938..c00879873101 100644
--- a/include/osl/conditn.h
+++ b/include/osl/conditn.h
@@ -67,7 +67,7 @@ SAL_DLLPUBLIC sal_Bool SAL_CALL osl_resetCondition(oslCondition Condition);
If condition has been destroyed prematurely, wait() will
return with False.
@param Condition handle to a created condition.
- @param pTimeout Tiemout value or NULL for infinite waiting
+ @param pTimeout Timeout value or NULL for infinite waiting
@return False if system-call failed.
*/
SAL_DLLPUBLIC oslConditionResult SAL_CALL osl_waitCondition(oslCondition Condition, const TimeValue* pTimeout);
diff --git a/include/osl/pipe.h b/include/osl/pipe.h
index dcfdcf309db8..a95ca3e8b9f5 100644
--- a/include/osl/pipe.h
+++ b/include/osl/pipe.h
@@ -48,7 +48,7 @@ typedef enum {
typedef sal_uInt32 oslPipeOptions;
#define osl_Pipe_OPEN 0x0000 /* open existing pipe */
-#define osl_Pipe_CREATE 0x0001 /* create pipe and open it, fails if already existst */
+#define osl_Pipe_CREATE 0x0001 /* create pipe and open it, fails if already exists */
typedef struct oslPipeImpl * oslPipe;