diff options
author | Roland McGrath <roland@hack.frob.com> | 2016-09-02 16:56:35 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2016-09-02 16:56:35 -0700 |
commit | 307c2c2dfff76330a29a3ab69a0177b118142145 (patch) | |
tree | b554d1cae0dc7c74bd5c35c1b0a7108fe0aafad8 /sysdeps/nacl/clock.c | |
parent | 54c86ccab686605ce05198f10cae925ae486b623 (diff) | |
download | glibc-307c2c2dfff76330a29a3ab69a0177b118142145.tar.gz glibc-307c2c2dfff76330a29a3ab69a0177b118142145.tar.xz glibc-307c2c2dfff76330a29a3ab69a0177b118142145.zip |
NaCl: Fix compile error in clock function.
* sysdeps/nacl/clock.c (clock): nacl_abi_clock_t -> nacl_irt_clock_t
Diffstat (limited to 'sysdeps/nacl/clock.c')
-rw-r--r-- | sysdeps/nacl/clock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/nacl/clock.c b/sysdeps/nacl/clock.c index 664ad650c3..b6fbcfd2dd 100644 --- a/sysdeps/nacl/clock.c +++ b/sysdeps/nacl/clock.c @@ -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); } |