diff options
author | Nikita Popov <nikic@php.net> | 2015-07-17 20:48:42 +0200 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2015-07-17 21:12:15 +0200 |
commit | 42e32c33e23a0f139e5c589acbcc580db2613c84 (patch) | |
tree | 09d59e02fa2f951f12b606975c08a3fcd5b1b4be /ext/standard/string.c | |
parent | 36e49c702bee0b4bbce6703608e527a2f7e1f629 (diff) | |
download | php-git-42e32c33e23a0f139e5c589acbcc580db2613c84.tar.gz |
More warning fixes
Diffstat (limited to 'ext/standard/string.c')
-rw-r--r-- | ext/standard/string.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/ext/standard/string.c b/ext/standard/string.c index 4d5c72404f..bb482ba7a1 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -2966,15 +2966,6 @@ static zend_string *php_strtr_ex(zend_string *str, char *str_from, char *str_to, } /* }}} */ -static int php_strtr_key_compare(const void *a, const void *b) /* {{{ */ -{ - Bucket *f = (Bucket *) a; - Bucket *s = (Bucket *) b; - - return f->h > s->h ? -1 : 1; -} -/* }}} */ - /* {{{ php_strtr_array */ static void php_strtr_array(zval *return_value, zend_string *input, HashTable *pats) { |