diff options
author | Stefan Liebler <stli@linux.vnet.ibm.com> | 2014-05-26 11:12:44 +0200 |
---|---|---|
committer | Andreas Krebbel <krebbel@linux.vnet.ibm.com> | 2014-05-26 11:12:44 +0200 |
commit | f8bdf1f0b623f05a80cb23890f165cb0cf8bd8c3 (patch) | |
tree | d513abf6584152cfe39d155ef63fa424558fe459 /nptl | |
parent | 15eaf6ffe3e117684a0e7b070c0a8754480d3fa3 (diff) | |
download | glibc-f8bdf1f0b623f05a80cb23890f165cb0cf8bd8c3.zip glibc-f8bdf1f0b623f05a80cb23890f165cb0cf8bd8c3.tar.gz glibc-f8bdf1f0b623f05a80cb23890f165cb0cf8bd8c3.tar.bz2 |
Fix typo in tst-mutex5 ifndef -> ifdef
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/tst-mutex5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/tst-mutex5.c b/nptl/tst-mutex5.c index 14d3025..a829272 100644 --- a/nptl/tst-mutex5.c +++ b/nptl/tst-mutex5.c @@ -87,7 +87,7 @@ do_test (void) } /* Elided locks do not time out. */ -#ifdef ENABLE_LOCK_ELISION +#ifndef ENABLE_LOCK_ELISION if (pthread_mutex_trylock (&m) == 0) { puts ("mutex_trylock succeeded"); |