summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2005-08-06 14:58:06 +0000
committertruelight <truelight@openttd.org>2005-08-06 14:58:06 +0000
commit4f15ada6cdd2b322f8f2b7a0ad41be7c2cda1192 (patch)
tree99e61820f44e2ac22558f47fcb7e147d9d0218bd /thread.c
parenteb826dfb66deedcc73932d4afec01f94b2725d3a (diff)
downloadopenttd-4f15ada6cdd2b322f8f2b7a0ad41be7c2cda1192.tar.xz
(svn r2814) -Fix: made MorphOS to compile again
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thread.c b/thread.c
index 354f241c6..574301ea0 100644
--- a/thread.c
+++ b/thread.c
@@ -6,7 +6,7 @@
#if defined(__AMIGA__) || defined(__MORPHOS__)
Thread* OTTDCreateThread(ThreadFunc function, void* arg) { return NULL; }
-void* OTTDJoinThread(Thread*) { return NULL; }
+void* OTTDJoinThread(Thread* t) { return NULL; }
#elif defined(__OS2__)