diff options
author | Andreas Schwab <schwab@suse.de> | 2014-05-13 16:40:41 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2014-05-27 14:48:46 +0200 |
commit | 774f928582fcfefb726f115772c001043aefa01c (patch) | |
tree | 25a1d36a397a74b00e2438caf52dfa5dfa0d3124 /elf/dl-load.c | |
parent | 36ffe7398af5e5daa5745c64a15226d864378738 (diff) | |
download | glibc-774f928582fcfefb726f115772c001043aefa01c.tar glibc-774f928582fcfefb726f115772c001043aefa01c.tar.gz glibc-774f928582fcfefb726f115772c001043aefa01c.tar.bz2 glibc-774f928582fcfefb726f115772c001043aefa01c.zip |
Remove second argument from TLS_INIT_TP macro
Diffstat (limited to 'elf/dl-load.c')
-rw-r--r-- | elf/dl-load.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/dl-load.c b/elf/dl-load.c index cfa7f2525f..016a99cf93 100644 --- a/elf/dl-load.c +++ b/elf/dl-load.c @@ -1176,7 +1176,7 @@ cannot allocate TLS data structures for initial thread"); } /* Now we install the TCB in the thread register. */ - errstring = TLS_INIT_TP (tcb, 0); + errstring = TLS_INIT_TP (tcb); if (__glibc_likely (errstring == NULL)) { /* Now we are all good. */ |