diff options
| author | Sara Golemon <pollita@php.net> | 2016-12-12 21:46:49 -0800 |
|---|---|---|
| committer | Anatol Belski <ab@php.net> | 2016-12-17 00:12:33 +0100 |
| commit | 5004ae2b628254be334c6faae2b7751051cdc031 (patch) | |
| tree | 9ea007251fd5855c70ea88d0085649823a55668a | |
| parent | 2f9e928af80402eec0aa7f0b52e4e907b6170695 (diff) | |
| download | php-git-5004ae2b628254be334c6faae2b7751051cdc031.tar.gz | |
Silence warning from unhandled enum
(cherry picked from commit 57bbe2c140752f491b1fa24336b817bd48f65a93)
| -rw-r--r-- | ext/phar/phar.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/phar/phar.c b/ext/phar/phar.c index f3054f5cbb..d4ec1c7977 100644 --- a/ext/phar/phar.c +++ b/ext/phar/phar.c @@ -3307,6 +3307,8 @@ static zend_op_array *phar_compile_file(zend_file_handle *file_handle, int type) } file_handle->handle.stream.handle = NULL; break; + default: + break; } *file_handle = f; } |
