about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2013-04-23 15:57:25 -0700
committerRoland McGrath <roland@hack.frob.com>2013-04-23 15:57:25 -0700
commitd6f9bc519da0ab3fadee9b967022f8122afde6b8 (patch)
treea5e700860c68cd63e16af7b1701a0a3f0b808326
parent87f51853ce3671f4ba9a9953de1fff952c5f7e52 (diff)
downloadglibc-d6f9bc519da0ab3fadee9b967022f8122afde6b8.tar.gz
glibc-d6f9bc519da0ab3fadee9b967022f8122afde6b8.tar.xz
glibc-d6f9bc519da0ab3fadee9b967022f8122afde6b8.zip
Fix name space use in last commit.
-rw-r--r--sysdeps/posix/timespec_get.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/posix/timespec_get.c b/sysdeps/posix/timespec_get.c
index 22a06c8bee..a578e8b986 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;