You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by pi...@apache.org on 2009/09/29 12:06:18 UTC

svn commit: r819872 - /webservices/axis2/trunk/c/util/src/platforms/unix/thread_unix.c

Author: pini
Date: Tue Sep 29 10:06:17 2009
New Revision: 819872

URL: http://svn.apache.org/viewvc?rev=819872&view=rev
Log:
Fixed a warning

Modified:
    webservices/axis2/trunk/c/util/src/platforms/unix/thread_unix.c

Modified: webservices/axis2/trunk/c/util/src/platforms/unix/thread_unix.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/src/platforms/unix/thread_unix.c?rev=819872&r1=819871&r2=819872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/src/platforms/unix/thread_unix.c (original)
+++ webservices/axis2/trunk/c/util/src/platforms/unix/thread_unix.c Tue Sep 29 10:06:17 2009
@@ -165,7 +165,7 @@
 
         if(thd->td)
         {
-            same_thread = pthread_equal(pthread_self(), thd->td);
+            same_thread = pthread_equal(pthread_self(), *thd->td);
             if(!same_thread)
             {
                 pthread_kill(thd->td, 0);