dpfp_threaded: return instead of pthread_exit() to avoid Cygwin warning

This commit is contained in:
Pete Batard 2011-01-19 14:00:12 +00:00 committed by Peter Stuge
parent e65878f21b
commit 0e177f22fc

View File

@ -91,7 +91,7 @@ static void *poll_thread_main(void *arg)
}
printf("poll thread shutting down\n");
pthread_exit(NULL);
return NULL;
}
static int find_dpfp_device(void)