2007-01-02 Ben Elliston <bje@au.ibm.com>

* spu/time.c (time): Cast new sys.time value to unsigned int.
This commit is contained in:
Jeff Johnston 2007-01-02 16:51:42 +00:00
parent 52cf7618ce
commit b7d9bb7e5e
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-01-02 Ben Elliston <bje@au.ibm.com>
* spu/time.c (time): Cast new sys.time value to unsigned int.
2006-12-25 Kazu Hirata <kazu@codesourcery.com>
* arm/syscalls.c (_unlink, _system, _rename): Cast arguments

View File

@ -39,7 +39,7 @@ time (time_t *t)
syscall_time_t sys;
syscall_out_t *psys_out = ( syscall_out_t* )&sys;
sys.time = t;
sys.time = (unsigned int)t;
_send_to_ppe (JSRE_POSIX1_SIGNALCODE, JSRE_TIME, &sys);