summaryrefslogtreecommitdiff
path: root/wince/string_wce.c
diff options
context:
space:
mode:
authoruema2 <uema2@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-31 13:36:19 +0000
committeruema2 <uema2@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-31 13:36:19 +0000
commite6775cc1933ffcfa07235a1c030aad4ed88fa1bf (patch)
tree20218bc83e8a04725314349d26f03442a8991ec1 /wince/string_wce.c
parent0dfe20d3d4868bd8872e9648ea1c9e495ab537eb (diff)
* wince/string_wce.c (strrchr): should decrement pointer.
* wince/Makefile.sub: correct a range of isdigit(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4880 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'wince/string_wce.c')
-rw-r--r--wince/string_wce.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wince/string_wce.c b/wince/string_wce.c
index a1ee075077..257eee101d 100644
--- a/wince/string_wce.c
+++ b/wince/string_wce.c
@@ -44,7 +44,7 @@ int strnicmp( const char *s1, const char *s2, size_t count )
char *strrchr( const char *p, int c )
{
char *pp;
- for( pp=(char*)p+strlen(p); pp!=p; p-- )
+ for( pp=(char*)p+strlen(p); pp!=p; pp-- )
{
if( *pp==c ) break;
}