From: Antony Dovgal Date: Mon, 2 Oct 2006 20:52:46 +0000 (+0000) Subject: fix compile warning X-Git-Tag: php-4.4.5RC1~60 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4cfe2249212e3ff8a73529d11dcb3b36ad53ae3d;p=php fix compile warning --- diff --git a/ext/standard/url.c b/ext/standard/url.c index daf61cc383..1d4302cbc7 100644 --- a/ext/standard/url.c +++ b/ext/standard/url.c @@ -204,7 +204,7 @@ PHPAPI php_url *php_url_parse_ex(char const *str, int length) } { - char *t = s; + const char *t = s; p = NULL; while (e > t && (t = memchr(t, '@', (e-t)))) { p = t++;