diff options
author | Andrey Hristov <andrey@php.net> | 1999-05-21 13:29:05 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 1999-05-21 13:29:05 +0000 |
commit | be9dc58cfe92079c1fc6cc95a99b93ba225b6aa5 (patch) | |
tree | d8a0a8a67b570ad38dc26187bfa87163c33da46a | |
parent | 17bbbf29636908d39c398206a3af6e262707e617 (diff) | |
download | php-git-be9dc58cfe92079c1fc6cc95a99b93ba225b6aa5.tar.gz |
Get rid of debug printf's.
-rw-r--r-- | ext/pcre/pcre.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/ext/pcre/pcre.c b/ext/pcre/pcre.c index ce9253765e..b15cdbaf01 100644 --- a/ext/pcre/pcre.c +++ b/ext/pcre/pcre.c @@ -261,10 +261,6 @@ PHP_FUNCTION(pcre_match) if (count >= 0) { matched = 1; - for(i=0; i<count; i++) - { - php3_printf("so = %d, eo = %d\n", offsets[i<<1], offsets[(i<<1)+1]); - } /* If subpatters array has been passed, fill it in with values. */ if (subpats != NULL) { /* Try to get the list of substrings and display a warning if failed. */ @@ -326,7 +322,6 @@ static int _pcre_get_backref(const char *walk, int *backref) if (walk[1] >= '0' && walk[1] <= '9') *backref = *backref * 10 + walk[1] - '0'; - php3_printf("backref = %d\n", *backref); return 1; } /* }}} */ |