diff options
author | Gabriel Caruso <carusogabriel34@gmail.com> | 2018-02-05 18:40:11 -0200 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2018-02-06 14:33:04 +0100 |
commit | ef0eb166bcf70868e54c44e9ba07d0f02fb5ff36 (patch) | |
tree | 96c363f85631a83c4448096d7e8071de8890ab81 | |
parent | 2f3c0b327fab211b5e8bf7cf7831fb2811be33a9 (diff) | |
download | php-git-ef0eb166bcf70868e54c44e9ba07d0f02fb5ff36.tar.gz |
Remove unused variable
-rw-r--r-- | ext/standard/info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/info.c b/ext/standard/info.c index e52b622144..f0c8bcfd7b 100644 --- a/ext/standard/info.c +++ b/ext/standard/info.c @@ -190,7 +190,7 @@ static int _display_module_info_def(zval *el) /* {{{ */ */ static void php_print_gpcse_array(char *name, uint32_t name_length) { - zval *data, *tmp, tmp2; + zval *data, *tmp; zend_string *string_key; zend_ulong num_key; zend_string *key; |