diff options
author | Aurelien Jarno <aurelien@aurel32.net> | 2017-12-10 19:09:04 +0100 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2017-12-10 19:10:28 +0100 |
commit | f648728cb17bcf043b6f750f360b6c8960c491fd (patch) | |
tree | 27e327c9ac0dea674f2d7a86dd85717ab32aa9ee /elf | |
parent | 9d0ffa60ad88799b33ab6437ba0f29b39c019462 (diff) | |
download | glibc-f648728cb17bcf043b6f750f360b6c8960c491fd.tar glibc-f648728cb17bcf043b6f750f360b6c8960c491fd.tar.gz glibc-f648728cb17bcf043b6f750f360b6c8960c491fd.tar.bz2 glibc-f648728cb17bcf043b6f750f360b6c8960c491fd.zip |
elf/rtld.c (init_tls): Add missing new line to the _dl_fatal_printf call [BZ #22577]
Changelog:
* elf/rtld.c (init_tls): Add missing new line to the _dl_fatal_printf
call.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/rtld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/rtld.c b/elf/rtld.c index 90505aee7d..cfd3729b8e 100644 --- a/elf/rtld.c +++ b/elf/rtld.c @@ -730,7 +730,7 @@ init_tls (void) void *tcbp = _dl_allocate_tls_storage (); if (tcbp == NULL) _dl_fatal_printf ("\ -cannot allocate TLS data structures for initial thread"); +cannot allocate TLS data structures for initial thread\n"); /* Store for detection of the special case by __tls_get_addr so it knows not to pass this dtv to the normal realloc. */ |