diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2015-06-23 20:30:11 +0200 |
---|---|---|
committer | Ashod Nakashian <ashod.nakashian@collabora.co.uk> | 2016-02-06 09:51:34 -0500 |
commit | 53ade60932857cb9b8b71520bf73c96a2e98dc11 (patch) | |
tree | cb4211a170619c5bd417bf245f88935b9468b99d /salhelper | |
parent | a68d4460558c52ea7cc17295caa1ce32e2b54673 (diff) |
Typo: iff->if
Change-Id: I3fc60856b5a56e71d70b55c89323be074bdec3b3
(cherry picked from commit cf92da3d6e1de14756efe3f1ee79f393a2f3787d)
Diffstat (limited to 'salhelper')
-rw-r--r-- | salhelper/source/thread.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/salhelper/source/thread.cxx b/salhelper/source/thread.cxx index 52c028c133ba..53fa2079c787 100644 --- a/salhelper/source/thread.cxx +++ b/salhelper/source/thread.cxx @@ -20,7 +20,7 @@ salhelper::Thread::Thread(char const * name): name_(name) {} void salhelper::Thread::launch() { SAL_INFO("salhelper.thread", "launch " << name_); // Assumption is that osl::Thread::create returns normally with a true - // return value iff it causes osl::Thread::run to start executing: + // return value if it causes osl::Thread::run to start executing: acquire(); try { if (!create()) { |