diff options
Diffstat (limited to 'elf/dl-support.c')
-rw-r--r-- | elf/dl-support.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/elf/dl-support.c b/elf/dl-support.c index 4006d960dd..8b1103966a 100644 --- a/elf/dl-support.c +++ b/elf/dl-support.c @@ -21,6 +21,7 @@ rtld.c and dl-sysdep.c in ways appropriate to bootstrap dynamic linking. */ #include <errno.h> +#include <libintl.h> #include <stdlib.h> #include <unistd.h> #include <ldsodefs.h> @@ -130,7 +131,7 @@ _dl_important_hwcaps (const char *platform, size_t platform_len, size_t *sz, /* XXX We don't try to find the capabilities in this case. */ result = (struct r_strlenpair *) malloc (sizeof (*result)); if (result == NULL) - _dl_signal_error (ENOMEM, NULL, "cannot create capability list"); + _dl_signal_error (ENOMEM, NULL, N_("cannot create capability list")); result[0].str = (char *) result; /* Does not really matter. */ result[0].len = 0; |