]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix clock_gettime to call the right IRT function.
authorRoland McGrath <roland@hack.frob.com>
Wed, 24 Apr 2013 20:40:27 +0000 (13:40 -0700)
committerRoland McGrath <roland@hack.frob.com>
Wed, 24 Apr 2013 20:40:27 +0000 (13:40 -0700)
sysdeps/nacl/clock_gettime.c

index 8235de25faec09d6a001adb301223e3fb1b79d49..a9d347d2ee6221dc37083d455a6c9848e1d4404f 100644 (file)
@@ -23,6 +23,6 @@
 int
 __clock_gettime (clockid_t clock_id, struct timespec *tp)
 {
-  return NACL_CALL (__nacl_irt_clock.clock_getres (clock_id, tp), 0);
+  return NACL_CALL (__nacl_irt_clock.clock_gettime (clock_id, tp), 0);
 }
 weak_alias (__clock_gettime, clock_gettime)