about summary refs log tree commit diff
path: root/nptl/sysdeps/unix
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@redhat.com>2010-07-06 08:08:46 -0700
committerUlrich Drepper <drepper@redhat.com>2010-07-06 08:08:46 -0700
commite8ee8bdf2a6fa0b8bde192c71e0c0bfcd45c4bb9 (patch)
tree422fa290185aa0a8c4583a08fb70315e1d11aa7e /nptl/sysdeps/unix
parenteb5e79feb71e6a9bf7fcb59a5e2c56ab09a08868 (diff)
downloadglibc-e8ee8bdf2a6fa0b8bde192c71e0c0bfcd45c4bb9.tar.gz
glibc-e8ee8bdf2a6fa0b8bde192c71e0c0bfcd45c4bb9.tar.xz
glibc-e8ee8bdf2a6fa0b8bde192c71e0c0bfcd45c4bb9.zip
Fix type mismatch
Diffstat (limited to 'nptl/sysdeps/unix')
-rw-r--r--nptl/sysdeps/unix/sysv/linux/pthread_getname.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/pthread_getname.c b/nptl/sysdeps/unix/sysv/linux/pthread_getname.c
index 593219b8ff..6e7786f987 100644
--- a/nptl/sysdeps/unix/sysv/linux/pthread_getname.c
+++ b/nptl/sysdeps/unix/sysv/linux/pthread_getname.c
@@ -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"