summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHarald Fernengel <harald.fernengel@nokia.com>2011-06-22 09:01:40 (GMT)
committerHarald Fernengel <harald.fernengel@nokia.com>2011-06-22 09:01:40 (GMT)
commitaf3bb0f146ec357ae6daf752a5f8bbdb074cde20 (patch)
treeb8dc90dc15d5000c4c693126f7a95b1d3a1d0592 /src
parent2df8f97fa5ee27a99020985c655a605aa2531991 (diff)
downloadQt-af3bb0f146ec357ae6daf752a5f8bbdb074cde20.zip
Qt-af3bb0f146ec357ae6daf752a5f8bbdb074cde20.tar.gz
Qt-af3bb0f146ec357ae6daf752a5f8bbdb074cde20.tar.bz2
trivial: fix typo in comment
Diffstat (limited to 'src')
-rw-r--r--src/corelib/kernel/qsystemsemaphore_unix.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/kernel/qsystemsemaphore_unix.cpp b/src/corelib/kernel/qsystemsemaphore_unix.cpp
index ebf7d6f..e060eb2 100644
--- a/src/corelib/kernel/qsystemsemaphore_unix.cpp
+++ b/src/corelib/kernel/qsystemsemaphore_unix.cpp
@@ -216,7 +216,7 @@ bool QSystemSemaphorePrivate::handle(QSystemSemaphore::AccessMode mode)
maxTries = 3;
} else {
// Race condition: if it no longer exists at the next sem_open
- // call, we won't realise we created it, so we'll leak it later.
+ // call, we won't realize we created it, so we'll leak it later.
oflag &= ~O_EXCL;
maxTries = 2;
}