Removed duplicate volatile keyword such that the compiler does no longer print a warning.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8476
This commit is contained in:
Bart Van Assche 2008-07-29 17:04:31 +00:00
parent a63fcb8d13
commit 6ccef7fec7

View File

@ -177,7 +177,7 @@ static char* lame_strerror ( long err )
so is mentioned by name in glibc-*helgrind*.supp. */
static void* mythread_wrapper ( void* xargsV )
{
volatile Word volatile* xargs = (volatile Word volatile*) xargsV;
volatile Word* xargs = (volatile Word*) xargsV;
void*(*fn)(void*) = (void*(*)(void*))xargs[0];
void* arg = (void*)xargs[1];
pthread_t me = pthread_self();