summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/wtf/ThreadFunctionInvocation.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/JavaScriptCore/wtf/ThreadFunctionInvocation.h')
-rw-r--r--Source/JavaScriptCore/wtf/ThreadFunctionInvocation.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/JavaScriptCore/wtf/ThreadFunctionInvocation.h b/Source/JavaScriptCore/wtf/ThreadFunctionInvocation.h
index f1e147268..2d8599eb9 100644
--- a/Source/JavaScriptCore/wtf/ThreadFunctionInvocation.h
+++ b/Source/JavaScriptCore/wtf/ThreadFunctionInvocation.h
@@ -31,7 +31,7 @@
namespace WTF {
-typedef void* (*ThreadFunction)(void* argument);
+typedef void (*ThreadFunction)(void* argument);
struct ThreadFunctionInvocation {
ThreadFunctionInvocation(ThreadFunction function, void* data)