From 57bbe2c140752f491b1fa24336b817bd48f65a93 Mon Sep 17 00:00:00 2001 From: Sara Golemon Date: Mon, 12 Dec 2016 21:46:49 -0800 Subject: [PATCH] Silence warning from unhandled enum --- ext/phar/phar.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ext/phar/phar.c b/ext/phar/phar.c index a02a30b303..de2ec90486 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; } -- 2.40.0