Author: durner Date: 2006-05-20 01:14:05 -0700 (Sat, 20 May 2006) New Revision: 2855
Modified: GNUnet/src/util/semaphore.c Log: fix the fix Modified: GNUnet/src/util/semaphore.c =================================================================== --- GNUnet/src/util/semaphore.c 2006-05-20 08:09:55 UTC (rev 2854) +++ GNUnet/src/util/semaphore.c 2006-05-20 08:14:05 UTC (rev 2855) @@ -333,7 +333,7 @@ pt->internal = MALLOC(sizeof(pthread_t)); *((pthread_t*)pt->internal) = pthread_self(); #ifdef HAVE_NEW_PTHREAD_T - GNUNET_ASSERT(NULL != *(((pthread_t*)pt->internal)->p)); + GNUNET_ASSERT(NULL != ((pthread_t*)pt->internal)->p); #else GNUNET_ASSERT(NULL != *((pthread_t*)pt->internal)); #endif _______________________________________________ GNUnet-SVN mailing list [email protected] http://lists.gnu.org/mailman/listinfo/gnunet-svn
