Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix pthread_barrier_init typo.
Applies Paul Eggert's fix for BZ 18868.
  • Loading branch information
Torvald Riegel committed Jan 15, 2016
1 parent 72276d6 commit 12c3bb7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
@@ -1,3 +1,8 @@
2016-01-15 Torvald Riegel <triegel@redhat.com>

[BZ #18868]
* nptl/pthread_barrier_init.c (__pthread_barrier_init): Apply fix.

2016-01-16 Andrew Senkevich <andrew.senkevich@intel.com>

* sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Added new files.
Expand Down
2 changes: 1 addition & 1 deletion nptl/pthread_barrier_init.c
Expand Up @@ -42,7 +42,7 @@ __pthread_barrier_init (pthread_barrier_t *barrier,

const struct pthread_barrierattr *iattr
= (attr != NULL
? iattr = (struct pthread_barrierattr *) attr
? (struct pthread_barrierattr *) attr
: &default_barrierattr);

ibarrier = (struct pthread_barrier *) barrier;
Expand Down

0 comments on commit 12c3bb7

Please sign in to comment.