* testsuite/libmudflap.cth/pass59-frag.c (main): Fix casting of arg.
From-SVN: r122911
+2007-03-14 Uros Bizjak <ubizjak@gmail.com>
+
+ * testsuite/libmudflap.cth/pass59-frag.c (main): Fix casting of arg.
+
2007-03-01 Brooks Moses <brooks.moses@codesourcery.com>
* Makefile.am: Add dummy install-pdf target.
int main()
{
pthread_t thread;
- int arg = 0;
- pthread_create(&thread, NULL, test_thread, (void*)arg);
+ void *arg = NULL;
+ pthread_create(&thread, NULL, test_thread, arg);
pthread_join(thread, NULL);
pthread_exit(NULL);
return 0;