]> sourceware.org Git - glibc.git/commitdiff
Avoid local PLT reference in __nptl_main.
authorRoland McGrath <roland@hack.frob.com>
Tue, 21 Oct 2014 17:18:17 +0000 (10:18 -0700)
committerRoland McGrath <roland@hack.frob.com>
Tue, 21 Oct 2014 17:18:17 +0000 (10:18 -0700)
ChangeLog
nptl/version.c

index 962e730d5d9353a0bfd88c1e36e3bb08e706ce91..bb59eadfe43bbfd908c3133aa348ee498ece2e4f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-10-21  Roland McGrath  <roland@hack.frob.com>
+
+       * nptl/version.c (__nptl_main): Call __libc_write, not __write.
+
 2014-10-20  Roland McGrath  <roland@hack.frob.com>
 
        * io/fts.c (dirent_not_directory): New function.
index b2095b41adf710fb564eed6c9e9246331d71b8dd..1df7d8e2c9fbbeedf9efa4e9b6f602a101b0268f 100644 (file)
@@ -38,6 +38,6 @@ __attribute__ ((noreturn))
 void
 __nptl_main (void)
 {
-  __write (STDOUT_FILENO, (const char *) banner, sizeof banner - 1);
+  __libc_write (STDOUT_FILENO, banner, sizeof banner - 1);
   _exit (0);
 }
This page took 0.120631 seconds and 5 git commands to generate.