2006-12-18 Ben Elliston <bje@au.ibm.com>
* spu/stat.c (stat): Cast new sys.pathname value to unsigned int.
This commit is contained in:
parent
afc9d95aca
commit
f4dc839650
@ -1,3 +1,7 @@
|
||||
2006-12-18 Ben Elliston <bje@au.ibm.com>
|
||||
|
||||
* spu/stat.c (stat): Cast new sys.pathname value to unsigned int.
|
||||
|
||||
2006-12-13 Ben Elliston <bje@au.ibm.com>
|
||||
|
||||
* libnosys/_exit.c (_exit): Finish with an infinite loop to
|
||||
|
@ -42,7 +42,7 @@ stat (const char *pathname, struct stat *pstat)
|
||||
syscall_out_t *psys_out = ( syscall_out_t* )&sys;
|
||||
jsre_stat_t pjstat;
|
||||
|
||||
sys.pathname = pathname;
|
||||
sys.pathname = (unsigned int)pathname;
|
||||
sys.ptr = ( unsigned int )&pjstat;
|
||||
|
||||
_send_to_ppe (JSRE_POSIX1_SIGNALCODE, JSRE_STAT, &sys);
|
||||
|
Loading…
Reference in New Issue
Block a user