]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Removed duplicate volatile keyword such that the compiler does no longer print a...
authorBart Van Assche <bvanassche@acm.org>
Tue, 29 Jul 2008 17:04:31 +0000 (17:04 +0000)
committerBart Van Assche <bvanassche@acm.org>
Tue, 29 Jul 2008 17:04:31 +0000 (17:04 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8476

helgrind/hg_intercepts.c

index b79adb5170a913ff8d8a8ada10c7f6f182533c6d..8e988e69273ed6667d0ae405b2e4016904849202 100644 (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();