This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.17-554-gd6f9bc5


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  d6f9bc519da0ab3fadee9b967022f8122afde6b8 (commit)
      from  87f51853ce3671f4ba9a9953de1fff952c5f7e52 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=d6f9bc519da0ab3fadee9b967022f8122afde6b8

commit d6f9bc519da0ab3fadee9b967022f8122afde6b8
Author: Roland McGrath <roland@hack.frob.com>
Date:   Tue Apr 23 15:57:25 2013 -0700

    Fix name space use in last commit.

diff --git a/sysdeps/posix/timespec_get.c b/sysdeps/posix/timespec_get.c
index 22a06c8..a578e8b 100644
--- a/sysdeps/posix/timespec_get.c
+++ b/sysdeps/posix/timespec_get.c
@@ -26,7 +26,7 @@ timespec_get (struct timespec *ts, int base)
   switch (base)
     {
     case TIME_UTC:
-      if (clock_gettime (CLOCK_REALTIME, ts) < 0)
+      if (__clock_gettime (CLOCK_REALTIME, ts) < 0)
         return 0;
       break;
 

-----------------------------------------------------------------------

Summary of changes:
 sysdeps/posix/timespec_get.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]