diff options
author | Andreas Schwab <schwab@redhat.com> | 2009-09-07 08:31:52 -0700 |
---|---|---|
committer | Petr Baudis <pasky@suse.cz> | 2009-09-18 20:10:02 +0200 |
commit | 2efa76efeb80664784e51b5b7eea1fd4af6db49b (patch) | |
tree | 10e1574ca2a7be8c07b90ef974e62e0abde4d050 | |
parent | d636be38ab3161d59704bb507165bbd8f089b146 (diff) | |
download | glibc-2efa76efeb80664784e51b5b7eea1fd4af6db49b.tar.gz glibc-2efa76efeb80664784e51b5b7eea1fd4af6db49b.tar.xz glibc-2efa76efeb80664784e51b5b7eea1fd4af6db49b.zip |
Fix malformed #pragma.
(cherry picked from commit 3d60eb17340768688bd287580c32365c1e925487)
-rw-r--r-- | nptl/ChangeLog | 4 | ||||
-rw-r--r-- | nptl/sysdeps/pthread/bits/libc-lock.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index eaa60cdd74..8b4bce8821 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,7 @@ +2009-09-07 Andreas Schwab <schwab@redhat.com> + + * sysdeps/pthread/bits/libc-lock.h (BP_SYM): Remove space before paren. + 2009-09-02 Suzuki K P <suzuki@in.ibm.com> Joseph Myers <joseph@codesourcery.com> diff --git a/nptl/sysdeps/pthread/bits/libc-lock.h b/nptl/sysdeps/pthread/bits/libc-lock.h index a597f3b5a6..0cad8aa899 100644 --- a/nptl/sysdeps/pthread/bits/libc-lock.h +++ b/nptl/sysdeps/pthread/bits/libc-lock.h @@ -529,7 +529,7 @@ extern int __pthread_atfork (void (*__prepare) (void), # if _LIBC # include <bp-sym.h> # else -# define BP_SYM (sym) sym +# define BP_SYM(sym) sym # endif weak_extern (BP_SYM (__pthread_mutex_init)) weak_extern (BP_SYM (__pthread_mutex_destroy)) |