diff options
author | Andreas Schwab <schwab@redhat.com> | 2010-07-06 08:08:46 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2010-07-06 08:08:46 -0700 |
commit | e8ee8bdf2a6fa0b8bde192c71e0c0bfcd45c4bb9 (patch) | |
tree | 422fa290185aa0a8c4583a08fb70315e1d11aa7e /nptl/sysdeps | |
parent | eb5e79feb71e6a9bf7fcb59a5e2c56ab09a08868 (diff) | |
download | glibc-e8ee8bdf2a6fa0b8bde192c71e0c0bfcd45c4bb9.tar.gz glibc-e8ee8bdf2a6fa0b8bde192c71e0c0bfcd45c4bb9.tar.xz glibc-e8ee8bdf2a6fa0b8bde192c71e0c0bfcd45c4bb9.zip |
Fix type mismatch
Diffstat (limited to 'nptl/sysdeps')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/pthread_getname.c | 2 |
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" |