mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 02:18:37 +00:00
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:
parent
a63fcb8d13
commit
6ccef7fec7
@ -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();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user