diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2015-06-23 20:30:11 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2015-06-23 20:30:11 +0200 |
commit | cf92da3d6e1de14756efe3f1ee79f393a2f3787d (patch) | |
tree | e459cecb503f3de8550c078e01a4a3634ca3fb5f /salhelper | |
parent | b9064c0780232610af9e4d45ba5c85b9496d1f75 (diff) |
Typo: iff->if
Change-Id: I3fc60856b5a56e71d70b55c89323be074bdec3b3
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()) { |