summaryrefslogtreecommitdiff
path: root/retrace/retrace_main.cpp
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2015-03-26 22:20:02 +0000
committerJosé Fonseca <jfonseca@vmware.com>2015-03-27 11:23:29 +0000
commit04a7d462b160eaf701292cc1a7a2c94803c1c4d4 (patch)
tree7d6584d1482d574edf513e83e645a9ffed4f4ad0 /retrace/retrace_main.cpp
parent79e224037a0265fd1e76ddbf8b9f188b3e2e6734 (diff)
os: Avoid dubious function casts in os::thread.
Diffstat (limited to 'retrace/retrace_main.cpp')
-rw-r--r--retrace/retrace_main.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/retrace/retrace_main.cpp b/retrace/retrace_main.cpp
index 8771a942..98bcfe6a 100644
--- a/retrace/retrace_main.cpp
+++ b/retrace/retrace_main.cpp
@@ -292,7 +292,7 @@ private:
os::thread thread;
- static void *
+ static void
runnerThread(RelayRunner *_this);
public:
@@ -430,10 +430,9 @@ public:
};
-void *
+void
RelayRunner::runnerThread(RelayRunner *_this) {
_this->runRace();
- return 0;
}