about summary refs log tree commit diff
path: root/elf/rtld.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-07-31 23:16:57 +0000
committerRoland McGrath <roland@gnu.org>2002-07-31 23:16:57 +0000
commit935f95dd364c8abc0da4cdaf9266eca936b48f98 (patch)
tree986b94033bf20749c81a95f5af6d10e37165920d /elf/rtld.c
parent2edcd24efaabb0808d7ad1bd906a3c8d8bf9320a (diff)
downloadglibc-935f95dd364c8abc0da4cdaf9266eca936b48f98.tar.gz
glibc-935f95dd364c8abc0da4cdaf9266eca936b48f98.tar.xz
glibc-935f95dd364c8abc0da4cdaf9266eca936b48f98.zip
* elf/rtld.c (dl_main): Fix typo in error message.
2002-07-31  Roland McGrath  <roland@frob.com>
Diffstat (limited to 'elf/rtld.c')
-rw-r--r--elf/rtld.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/rtld.c b/elf/rtld.c
index 85d8108813..82fe809f70 100644
--- a/elf/rtld.c
+++ b/elf/rtld.c
@@ -1077,7 +1077,7 @@ of this helper program; chances are you did not intend to run this program.\n\
 	  slotinfo[++i].map = l;
       assert (i == GL(dl_tls_max_dtv_idx));
 
-      /* Computer the TLS offsets for the various blocks.  We call this
+      /* Compute the TLS offsets for the various blocks.  We call this
 	 function even if none of the modules available at startup time
 	 uses TLS to initialize some variables.  */
       _dl_determine_tlsoffset ();
@@ -1090,7 +1090,7 @@ of this helper program; chances are you did not intend to run this program.\n\
       tcbp = INTUSE(_dl_allocate_tls) ();
       if (tcbp == NULL)
 	_dl_fatal_printf ("\
-cannot allocate TLS data structures for inital thread");
+cannot allocate TLS data structures for initial thread");
 
       /* And finally install it for the main thread.  */
       TLS_INIT_TP (tcbp);