]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
NaCl: Fix compile error in clock function.
authorRoland McGrath <roland@hack.frob.com>
Fri, 2 Sep 2016 23:56:35 +0000 (16:56 -0700)
committerRoland McGrath <roland@hack.frob.com>
Fri, 2 Sep 2016 23:59:45 +0000 (16:59 -0700)
* sysdeps/nacl/clock.c (clock): nacl_abi_clock_t -> nacl_irt_clock_t

(cherry picked from commit 307c2c2dfff76330a29a3ab69a0177b118142145)

ChangeLog
sysdeps/nacl/clock.c

index 3af5852df4ee2c387af5888920b51261afb0e22c..01272446091ed09c94a52245834d47c225b113fd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2016-09-02  Roland McGrath  <roland@hack.frob.com>
+
+       * sysdeps/nacl/clock.c (clock): nacl_abi_clock_t -> nacl_irt_clock_t
+
 2016-08-17  Florian Weimer  <fweimer@redhat.com>
 
        Reduce time to expected nptl/tst-once5 failure.
index 664ad650c3f60697d53414f997b8c71dd2552ac0..b6fbcfd2dd0a38cd17debd28fd6ca32a7a16cf89 100644 (file)
@@ -24,6 +24,6 @@
 clock_t
 clock (void)
 {
-  nacl_abi_clock_t result;
+  nacl_irt_clock_t result;
   return NACL_CALL (__nacl_irt_basic.clock (&result), result);
 }