Fix type mismatch
authorAndreas Schwab <schwab@redhat.com>
Tue, 6 Jul 2010 15:08:46 +0000 (08:08 -0700)
committerUlrich Drepper <drepper@redhat.com>
Tue, 6 Jul 2010 15:08:46 +0000 (08:08 -0700)
nptl/ChangeLog
nptl/sysdeps/unix/sysv/linux/pthread_getname.c

index 5a392ef..c1f8620 100644 (file)
@@ -1,3 +1,8 @@
+2010-07-06  Andreas Schwab  <schwab@redhat.com>
+
+       * sysdeps/unix/sysv/linux/pthread_getname.c (pthread_getname_np):
+       Fix type mismatch.
+
 2010-07-03  Ulrich Drepper  <drepper@redhat.com>
 
        * tst-abstime.c (do_test): Some more cleanups
index 593219b..6e7786f 100644 (file)
@@ -42,7 +42,7 @@ pthread_getname_np (th, buf, len)
   if (len < TASK_COMM_LEN)
     return ERANGE;
 
-  if (th == THREAD_SELF)
+  if (pd == THREAD_SELF)
     return prctl (PR_GET_NAME, buf) ? errno : 0;
 
 #define FMT "/proc/self/task/%u/comm"