Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2006-12-18 19:43:31 +0300
committerJeff Johnston <jjohnstn@redhat.com>2006-12-18 19:43:31 +0300
commitf4dc8396502337a40b9c786b7f218c6bfa77e12f (patch)
treeaac57c53ddd0dd72fd6b6dce3ebe4bfc939a9544 /libgloss/spu
parentafc9d95aca105f81dc048984b60127031d8c0230 (diff)
2006-12-18 Ben Elliston <bje@au.ibm.com>
* spu/stat.c (stat): Cast new sys.pathname value to unsigned int.
Diffstat (limited to 'libgloss/spu')
-rw-r--r--libgloss/spu/stat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgloss/spu/stat.c b/libgloss/spu/stat.c
index 05e64ac3b..5dbae8ac8 100644
--- a/libgloss/spu/stat.c
+++ b/libgloss/spu/stat.c
@@ -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);