From: Roland McGrath Date: Wed, 24 Apr 2013 20:40:27 +0000 (-0700) Subject: Fix clock_gettime to call the right IRT function. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f23de1e83fe0eef4681600c3f5ce20abb0450beb;p=thirdparty%2Fglibc.git Fix clock_gettime to call the right IRT function. --- diff --git a/sysdeps/nacl/clock_gettime.c b/sysdeps/nacl/clock_gettime.c index 8235de25fae..a9d347d2ee6 100644 --- a/sysdeps/nacl/clock_gettime.c +++ b/sysdeps/nacl/clock_gettime.c @@ -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)