summaryrefslogtreecommitdiff
path: root/ext/phar
diff options
context:
space:
mode:
authorSara Golemon <pollita@php.net>2016-12-12 21:46:49 -0800
committerAnatol Belski <ab@php.net>2016-12-16 22:55:13 +0100
commit587f1b2427458d1bc2b2d17934a0ad068315405d (patch)
tree30b792d2bd78358ec0bf60b6f7c620893e7e13cf /ext/phar
parent9cdf64c2251a94f7b6bee47d0889e88dbaf5118c (diff)
downloadphp-git-587f1b2427458d1bc2b2d17934a0ad068315405d.tar.gz
Silence warning from unhandled enum
(cherry picked from commit 57bbe2c140752f491b1fa24336b817bd48f65a93)
Diffstat (limited to 'ext/phar')
-rw-r--r--ext/phar/phar.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/phar/phar.c b/ext/phar/phar.c
index c33d6e5e9c..dc469daf6f 100644
--- a/ext/phar/phar.c
+++ b/ext/phar/phar.c
@@ -3290,6 +3290,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;
}