git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4741 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet 2006-01-08 01:31:26 +00:00
parent 741322a01a
commit 3cda5da0b8

View File

@ -51,7 +51,7 @@
typedef pthread_t Fl_Thread;
static int fl_create_thread(Fl_Thread& t, void *(*f) (void *), void* p) {
return pthread_create((pthread_t*)&t, &attr, f, p);
return pthread_create((pthread_t*)&t, 0, f, p);
}
# elif defined(WIN32) && !defined(__WATCOMC__) // Use Windows threading...