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-11-29 22:54:05 +0300
committerJeff Johnston <jjohnstn@redhat.com>2006-11-29 22:54:05 +0300
commit80c6ead24280c15ec859c63ce73924bb948b8323 (patch)
treeee3ab670670dff2015277882fdc8591e9a77ae3b /newlib/libc/machine/spu/strspn.c
parent75bb63452d845a5915add61b56fed1c7d9fa31e3 (diff)
2006-11-29 Kazunori Asayama <asayama@sm.sony.co.jp>
* libc/machine/spu/memset.c: Fix type of explicit cast. * libc/machine/spu/strncmp.c: Add explicit cast. * libc/machine/spu/strrchr.c: Ditto. * libc/machine/spu/strspn.c: Ditto.
Diffstat (limited to 'newlib/libc/machine/spu/strspn.c')
-rw-r--r--newlib/libc/machine/spu/strspn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/machine/spu/strspn.c b/newlib/libc/machine/spu/strspn.c
index 93cbd9d3c..511e6316e 100644
--- a/newlib/libc/machine/spu/strspn.c
+++ b/newlib/libc/machine/spu/strspn.c
@@ -63,7 +63,7 @@ size_t strspn(const char *s1, const char *s2)
do {
data1 = spu_shuffle(dataA, dataB, shuffle);
- match = spu_splats(0);
+ match = spu_splats((unsigned char)0);
ptr2 = (vec_uchar16 *)s2;
data2 = *ptr2;