diff options
author | Zeev Suraski <zeev@php.net> | 2001-08-11 17:03:37 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-08-11 17:03:37 +0000 |
commit | c0404f46311e5b519dc51697e181bb39ca8d09d2 (patch) | |
tree | 291959f75d7b2a3f3e171830ed6eea76b5d98b4d /ext/standard/url.c | |
parent | f6f6c4d7e63d2eaf4ece7aee66f46a013b29bffa (diff) | |
download | php-git-c0404f46311e5b519dc51697e181bb39ca8d09d2.tar.gz |
Whitespace
Diffstat (limited to 'ext/standard/url.c')
-rw-r--r-- | ext/standard/url.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/standard/url.c b/ext/standard/url.c index 83bd53b65b..b2484ea53f 100644 --- a/ext/standard/url.c +++ b/ext/standard/url.c @@ -70,7 +70,7 @@ PHPAPI php_url *php_url_parse(char *str) php_url *ret = (php_url *) emalloc(sizeof(php_url)); if (!ret) { - /*php_error(E_WARNING,"Unable to allocate memory\n");*/ + /*php_error(E_WARNING, "Unable to allocate memory\n");*/ return NULL; } memset(ret, 0, sizeof(php_url)); @@ -79,13 +79,13 @@ PHPAPI php_url *php_url_parse(char *str) http://www.ics.uci.edu/~fielding/url/url.txt */ err = regcomp(&re, "^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\\?([^#]*))?(#(.*))?", REG_EXTENDED); if (err) { - /*php_error(E_WARNING,"Unable to compile regex: %d\n", err);*/ + /*php_error(E_WARNING, "Unable to compile regex: %d\n", err);*/ efree(ret); return NULL; } err = regexec(&re, str, 10, subs, 0); if (err) { - /*php_error(E_WARNING,"Error with regex\n");*/ + /*php_error(E_WARNING, "Error with regex\n");*/ efree(ret); regfree(&re); return NULL; @@ -128,7 +128,7 @@ PHPAPI php_url *php_url_parse(char *str) STR_FREE(ret->fragment); efree(ret); efree(result); - /*php_error(E_WARNING,"Unable to compile regex: %d\n", err);*/ + /*php_error(E_WARNING, "Unable to compile regex: %d\n", err);*/ if (!cerr) regfree(&re); return NULL; } |