summaryrefslogtreecommitdiff
path: root/Source/WTF/wtf/ThreadingPthreads.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WTF/wtf/ThreadingPthreads.cpp')
-rw-r--r--Source/WTF/wtf/ThreadingPthreads.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WTF/wtf/ThreadingPthreads.cpp b/Source/WTF/wtf/ThreadingPthreads.cpp
index f57f3224a..510173d09 100644
--- a/Source/WTF/wtf/ThreadingPthreads.cpp
+++ b/Source/WTF/wtf/ThreadingPthreads.cpp
@@ -178,7 +178,7 @@ ThreadIdentifier createThreadInternal(ThreadFunction entryPoint, void* data, con
if (pthread_attr_getstack(&attr, &stackAddr, &stackSize))
LOG_ERROR("pthread_attr_getstack() failed: %d", errno);
else {
- stackSize = BlackBerry::Platform::Settings::get()->secondaryThreadStackSize();
+ stackSize = BlackBerry::Platform::Settings::instance()->secondaryThreadStackSize();
if (pthread_attr_setstack(&attr, stackAddr, stackSize))
LOG_ERROR("pthread_attr_getstack() failed: %d", errno);
}