diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-12-09 22:29:37 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-12-09 22:29:37 +0000 |
commit | 66f17705e46e88f8f01e66556fe62487aecdce29 (patch) | |
tree | b679c1a0b36f8f136299066fa7700847710f5953 /nptl | |
parent | 60608028117600c2ca2c2ef8c122d56da253cc78 (diff) | |
download | glibc-66f17705e46e88f8f01e66556fe62487aecdce29.tar.gz glibc-66f17705e46e88f8f01e66556fe62487aecdce29.tar.xz glibc-66f17705e46e88f8f01e66556fe62487aecdce29.zip |
* sysdeps/unix/sysv/linux/rtld-lowlevel.h
(__rtld_mrlock_initialize): Add missing closing parenthesis.
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/ChangeLog | 5 | ||||
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/rtld-lowlevel.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index c65b60dbff..20f530077a 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,8 @@ +2006-12-09 Ulrich Drepper <drepper@redhat.com> + + * sysdeps/unix/sysv/linux/rtld-lowlevel.h + (__rtld_mrlock_initialize): Add missing closing parenthesis. + 2006-10-30 Jakub Jelinek <jakub@redhat.com> * sysdeps/ia64/pthread_spin_unlock.c (pthread_spin_unlock): Use diff --git a/nptl/sysdeps/unix/sysv/linux/rtld-lowlevel.h b/nptl/sysdeps/unix/sysv/linux/rtld-lowlevel.h index bc7a6454ea..6b3d3682da 100644 --- a/nptl/sysdeps/unix/sysv/linux/rtld-lowlevel.h +++ b/nptl/sysdeps/unix/sysv/linux/rtld-lowlevel.h @@ -43,7 +43,7 @@ typedef int __rtld_mrlock_t; #define _RTLD_MRLOCK_INITIALIZER 0 #define __rtld_mrlock_initialize(NAME) \ - (void) ((NAME) = 0 + (void) ((NAME) = 0) #define __rtld_mrlock_lock(lock) \ |