From: Moriyoshi Koizumi Date: Wed, 10 Dec 2003 06:04:15 +0000 (+0000) Subject: Fix typo. X-Git-Tag: php-5.0.0b3RC1~155 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c4c586a6523387d0b9459c1e5e9b9584e28bd0be;p=php Fix typo. --- diff --git a/ext/standard/string.c b/ext/standard/string.c index 859e9b1484..23e505ba23 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -1100,7 +1100,7 @@ PHPAPI void php_basename(char *s, size_t len, char *suffix, size_t sufflen, char while(c>=s) { if(*c == '/' #ifdef PHP_WIN32 - || ( *c == '\\' && !IsDBCSLeadByte(*c-1)) + || ( *c == '\\' && !IsDBCSLeadByte(*(c-1))) #endif ) { c++;