diff options
Diffstat (limited to 'elf')
-rw-r--r-- | elf/dl-close.c | 2 | ||||
-rw-r--r-- | elf/dl-open.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/elf/dl-close.c b/elf/dl-close.c index 342a256cff..b7b267e2bf 100644 --- a/elf/dl-close.c +++ b/elf/dl-close.c @@ -354,7 +354,7 @@ _dl_close (void *_map) counter. */ if (any_tls) if (__builtin_expect (++GL(dl_tls_generation) == 0, 0)) - __libc_fatal (gettext ("TLS generation counter wrapped! Please send report with the 'glibcbug' script.")); + __libc_fatal (_("TLS generation counter wrapped! Please send report with the 'glibcbug' script.")); #endif /* Notify the debugger those objects are finalized and gone. */ diff --git a/elf/dl-open.c b/elf/dl-open.c index 8605687079..5540055168 100644 --- a/elf/dl-open.c +++ b/elf/dl-open.c @@ -433,7 +433,7 @@ dl_open_worker (void *a) /* Bump the generation number if necessary. */ if (any_tls) if (__builtin_expect (++GL(dl_tls_generation) == 0, 0)) - __libc_fatal (gettext ("TLS generation counter wrapped! Please send report with the 'glibcbug' script.")); + __libc_fatal (_("TLS generation counter wrapped! Please send report with the 'glibcbug' script.")); #endif /* Run the initializer functions of new objects. */ |