diff options
author | George Peter Banyard <girgias@php.net> | 2019-07-14 03:45:31 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-07-23 11:27:23 +0200 |
commit | 6d6d954d0d28f488f743e6c9d0cd9ab01e1c4e41 (patch) | |
tree | 60cbb3987b5dadbac96ca4a372045d2f509e77f3 /ext/phar/util.c | |
parent | a07e85f93fe446975f84948cfe905e2ec1c4db4a (diff) | |
download | php-git-6d6d954d0d28f488f743e6c9d0cd9ab01e1c4e41.tar.gz |
Cleanup of remaining E_STRICT in tests
Diffstat (limited to 'ext/phar/util.c')
-rw-r--r-- | ext/phar/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/phar/util.c b/ext/phar/util.c index 59a6cd7c88..53982b0f85 100644 --- a/ext/phar/util.c +++ b/ext/phar/util.c @@ -934,7 +934,7 @@ int phar_free_alias(phar_archive_data *phar, char *alias, size_t alias_len) /* { return FAILURE; } - /* this archive has no open references, so emit an E_STRICT and remove it */ + /* this archive has no open references, so emit a notice and remove it */ if (zend_hash_str_del(&(PHAR_G(phar_fname_map)), phar->fname, phar->fname_len) != SUCCESS) { return FAILURE; } |