diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2015-07-07 23:14:45 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-07-08 12:21:19 +0200 |
commit | e544f449eded2738b45de4be13c72b128a16bafe (patch) | |
tree | 3e779fd42f9a17d2b2d62cd8fe43c6bf63d78953 /sal/osl | |
parent | 307edd412e4fe3a74378959f5d93f5a2a44f1b60 (diff) |
Fix typos
Change-Id: I020c7ce4d9aa93cb0292378a410cdb9f7788e920
Signed-off-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sal/osl')
-rw-r--r-- | sal/osl/unx/file_misc.cxx | 2 | ||||
-rw-r--r-- | sal/osl/w32/file_dirvol.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sal/osl/unx/file_misc.cxx b/sal/osl/unx/file_misc.cxx index 125afeab8044..f5075810598a 100644 --- a/sal/osl/unx/file_misc.cxx +++ b/sal/osl/unx/file_misc.cxx @@ -567,7 +567,7 @@ oslFileError SAL_CALL osl_createDirectoryPath( osl::systemPathRemoveSeparator(sys_path); // const_cast because sys_path is a local copy which we want to modify inplace instead of - // coyp it into another buffer on the heap again + // copy it into another buffer on the heap again return create_dir_recursively_(sys_path.pData->buffer, aDirectoryCreationCallbackFunc, pData); } diff --git a/sal/osl/w32/file_dirvol.cxx b/sal/osl/w32/file_dirvol.cxx index cb95dd684664..bd5bb0272c93 100644 --- a/sal/osl/w32/file_dirvol.cxx +++ b/sal/osl/w32/file_dirvol.cxx @@ -682,7 +682,7 @@ oslFileError SAL_CALL osl_createDirectoryPath( // const_cast because sys_path is a local copy // which we want to modify inplace instead of - // coyp it into another buffer on the heap again + // copy it into another buffer on the heap again return oslTranslateFileError(create_dir_recursively_( sys_path.pData, aDirectoryCreationCallbackFunc, pData)); } |