summaryrefslogtreecommitdiff
path: root/wince/string_wce.c
diff options
context:
space:
mode:
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;
}